-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTest Template
88 lines (88 loc) · 2.54 KB
/
Test Template
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
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h1>About Me</h1>
<p>Insert your personal statement or summary here.</p>
</section>
<section id="experience">
<h2>Experience</h2>
<ul>
<li>
<h3>Job Title</h3>
<p><strong>Company Name</strong></p>
<p><em>Date</em></p>
<ul>
<li>Bullet point description of your job responsibilities and accomplishments.</li>
</ul>
</li>
<li>
<h3>Job Title</h3>
<p><strong>Company Name</strong></p>
<p><em>Date</em></p>
<ul>
<li>Bullet point description of your job responsibilities and accomplishments.</li>
</ul>
</li>
</ul>
</section>
<section id="education">
<h2>Education</h2>
<ul>
<li>
<h3>Degree Title</h3>
<p><strong>Institution Name</strong></p>
<p><em>Date</em></p>
</li>
<li>
<h3>Degree Title</h3>
<p><strong>Institution Name</strong></p>
<p><em>Date</em></p>
</li>
</ul>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>Skill 1</li>
<li>Skill 2</li>
<li>Skill 3</li>
</ul>
</section>
<section id="contact">
<h2>Contact Me</h2>
<form action="submit-form.php" method="POST">
<label for="name">Name</label>
<input type="text" name="name" id="name" required>
<label for="email">Email</label>
<input type="email" name="email" id="email" required>
<label for="message">Message</label>
<textarea name="message" id="message" required></textarea>
<button type="submit">Send</button>
</form>
</section>
</main>
<footer>
<p>Copyright © Insert Year Here.
Created by Your Name.</p>
</footer>
</body>
</html>