-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (76 loc) · 2.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en" dir="ltr">
<!--Meta-->
<head>
<meta charset="utf-8">
<title>Test Resume Page</title>
<link rel="stylesheet" href="site.css">
</head>
<!--Content-->
<body>
<div class="container">
<header>
<img id="portrait" src="img/social-logo-web-1000px.png" alt="MN">
<h1 id="siteName">My Name</h1>
<ul id="menu">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="privacy.html">Privacy</a></li>
</ul>
</header>
<main>
<p> <strong>Purpose:</strong> This is some filler text</p>
<h2>Experience</h2>
<div class="experience">
<p class="title">ABC - Some Company - 2012-2019</p>
<p>Some relevant desctiption text.</p>
</div>
<div class="experience">
<p class="title">DEF - Another Company - 2008-2012</p>
<p>Additional information about this section.</p>
</div>
</main>
<aside>
<h2>Contact Me</h2>
<form id="contactForm" action="index.html" method="post">
<div id="formInfo"></div>
<div>
<label for="fullName">Full Name</label>
</div>
<div>
<input id="fullName" type="text">
</div>
<div>
<label for="email">Email</label>
</div>
<div>
<input id="email" type="email">
</div>
<div>
<label for="subject">Subject</label>
</div>
<div>
<select id="subject">
<option>Job Offer</option>
<option>Personal Message</option>
<option>Complaint</option>
</select>
</div>
<div>
<label for="msg">Message</label>
</div>
<div>
<textarea id="msg" rows="4"></textarea>
</div>
<div>
<input type="submit" value="Send">
</div>
</form>
</aside>
<footer>
<p>© 2022 Copyright - MN</p>
</footer>
</div>
<script src="index.js"></script>
</body>
</html>