Skip to content

Commit 3bff29c

Browse files
added folders for issues
1 parent fa8c442 commit 3bff29c

File tree

2 files changed

+90
-0
lines changed

2 files changed

+90
-0
lines changed

issue1/README_2.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# README for Issue #1
2+
3+
**Portfolio Copy-** [Google Document](https://docs.google.com/document/d/1phiC1_kpQKr5KZ9hdH8_DDhxuiwaUYcSyQqVmrr_rkg/edit?usp=sharing)
4+
5+
**FigJam-** [Wire Frame](https://www.figma.com/file/WXxGU5OvBQlZ1NkhGVTCZd/Portfolio-Wire-Frame?t=2XuuBcW98WQ6WNiP-1)
6+
7+
**Figma-** [Design](https://www.figma.com/file/0y2M2EpUix6RQ6k6s7rdmn/Portfolio-Design?t=2XuuBcW98WQ6WNiP-1)
8+

issue3/index.html

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>About me</title>
8+
</head>
9+
<body>
10+
<header>
11+
<h1>About Me</h1>
12+
</header>
13+
<section>
14+
<p>When I'm not coding, I enjoy indulging my passion for travel, experiencing new cultures, and exploring the great outdoors. There's nothing quite like the thrill of visiting a new place, immersing oneself in its culture, and discovering the hidden gems that make it unique. Whether it's hiking in the mountains, lounging on a beach, or strolling through a bustling city, I love to get out and explore everything that this world has to offer. Traveling has broadened my perspective and taught me valuable life lessons that I carry with me every day.</p>
15+
<p>I am <em>excited</em> about working with new clients, and I am eager to collaborate with you to create stunning websites that represent your vision. Contact me today, and let's bring your ideas to <strong>life!</strong></p>
16+
<h4>Connect with me on Social Media</h4>
17+
<ul>
18+
<li><a href="https://www.linkedin.com">LinkedIn</a></li>
19+
<li><a href="https://www.twitter.com">Twitter</a></li>
20+
<li><a href="https://www.facebook.com">Facebook</a></li>
21+
</ul>
22+
<br>
23+
<table>
24+
<thead><h4>Table Header</h4></thead>
25+
<tbody>
26+
<tr>
27+
<th>Column Header</th>
28+
<th>Column Header</th>
29+
<th>Column Header</th>
30+
</tr>
31+
<tr>
32+
<td>data</td>
33+
<td>data</td>
34+
<td>data</td>
35+
</tr>
36+
<tr>
37+
<td>data</td>
38+
<td>data</td>
39+
<td>data</td>
40+
</tr>
41+
<tr>
42+
<td>data</td>
43+
<td>data</td>
44+
<td>data</td>
45+
</tr>
46+
</tbody>
47+
<tfoot>
48+
<tr>
49+
<td><small>Table footer</small></td>
50+
</tr>
51+
</tfoot>
52+
</table>
53+
</section>
54+
<br>
55+
<hr>
56+
<section>
57+
<h2>Contact Me</h2>
58+
<form>
59+
<label for="name">Name</label>
60+
<input type="text" name="name" id="name" placeholder="John Doe" required>
61+
<br>
62+
<label for="email-address">Email</label>
63+
<input type="email" name="email-address" id="email-address" placeholder="[email protected]" required>
64+
<br>
65+
<label for="subject">Subject</label>
66+
<select name="subject" id="subject" required>
67+
<option value="work" selected>Work Inquiry</option>
68+
<option value="social">Social Networking</option>
69+
<option value="other">Other</option>
70+
</select>
71+
<br>
72+
<label for="message">Message</label>
73+
<input type="textarea" name="message" id="message" placeholder="Your message here" required>
74+
<br>
75+
<button name="submit">Submit</button>
76+
</form>
77+
</section>
78+
<footer>
79+
<p><small>Page footer</small></p>
80+
</footer>
81+
</body>
82+
</html>

0 commit comments

Comments
 (0)