-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
78 lines (69 loc) · 1.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body>
<div class="container">
<header>
<h1 id="name"></h1>
<h2 id="title"></h2>
<p id="contact"></p>
<p id="links"></p>
</header>
<main>
<section>
<h2>Professional Summary</h2>
<p id="summary"></p>
</section>
<section>
<h2>Professional Experience</h2>
<div id="experience">
<!-- Experience will be dynamically loaded -->
</div>
</section>
<section>
<h2>Education</h2>
<div id="education">
<!-- Education will be dynamically loaded -->
</div>
</section>
<section>
<h2>Technical Skills</h2>
<ul id="skills">
<!-- Skills will be dynamically loaded -->
</ul>
</section>
<section>
<h2>Certifications</h2>
<ul id="certifications">
<!-- Certifications will be dynamically loaded -->
</ul>
</section>
<section>
<h2>Languages</h2>
<p id="languages"></p>
</section>
<section>
<h2>Volunteering</h2>
<div id="volunteering">
<!-- Volunteering data will be dynamically loaded here -->
</div>
</section>
<section>
<h2>Open Source Contributions</h2>
<div id="opensource">
<!-- Open Source Contributions will be dynamically loaded -->
</div>
</section>
</main>
<footer>
<p id="footer"></p>
</footer>
</div>
</body>
</html>