-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (57 loc) · 1.93 KB
/
index.html
File metadata and controls
63 lines (57 loc) · 1.93 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Resume</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<header>
<h1>Your Name</h1>
<h2>Web Developer</h2>
</header>
<nav>
<ul>
<li><a href="#contact">Contact</a></li>
<li><a href="#education">Education</a></li>
<li><a href="#experience">Experience</a></li>
<li><a href="#skills">Skills</a></li>
</ul>
</nav>
<section id="contact" class="contact">
<h3>Contact Information</h3>
<p>Email: <a href="mailto:your.email@example.com">your.email@example.com</a></p>
<p>Phone: (123) 456-7890</p>
<p>LinkedIn: <a href="https://www.linkedin.com/in/yourprofile">yourprofile</a></p>
</section>
<section id="education" class="education">
<h3>Education</h3>
<ul>
<li>Bachelor's Degree in Computer Science - University Name, Year</li>
<li>Master's Degree in Web Development - University Name, Year</li>
</ul>
</section>
<section id="experience" class="experience">
<h3>Experience</h3>
<ul>
<li>Web Developer - Company Name (Year - Year)</li>
<li>Frontend Developer - Company Name (Year - Year)</li>
</ul>
</section>
<section id="skills" class="skills">
<h3>Skills</h3>
<ul>
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>TypeScript</li>
<li>React</li>
<li>Node.js</li>
</ul>
</section>
</div>
<script src="dist/script.js"></script>
</body>
</html>