-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (74 loc) · 2.9 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
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>Single-Page-CV</title>
<!-- Favicon: Add a favicon for your CV page. -->
<link rel="icon" type="image/x-icon" href="./favicon.ico">
<!-- SEO Meta Tags: Include essential meta tags for SEO. -->
<meta name="description" content="A frontend developer experted in HTML, CSS, JavaScript, Accessibility, Figma to Design, Responsive Web Design, Technical Writing, Presentation">
<meta name="keywords" content="Frontend, Developer, HTML, CSS, JavaScript, Accessibility, Figma, Design, Responsive Web Design, Technical Writing, Presentation">
<meta name="author" content="Win">
<!-- Open Graph (OG) Tags: Add OG tags for better social media sharing. -->
<meta property="og:title" content="Single-Page-CV"/>
<meta property="og:description" content="Create a single-page HTML CV to showcase your career history"/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://your-website-url.com" />
<meta property="og:image" content="https://your-website-url.com/your-image.jpg" />
</head>
<body>
<hr />
<header>
<h1>Your Name</h1>
</header>
<section>
<h3>Junior Frontend Developer</h3>
<address>
123 Your Street <br/>
Your City, ST 12345 <br/>
</address>
<p>(123) 456-7890</p>
<a href="mailto:[email protected]">[email protected]</a>
</section>
<section class="skills">
<h3>Skills</h3>
<p>HTML, CSS, JavaScript, Accessibility, Figma to Design, Responsive Web Design, Technical Writing, Presentation
</p>
</section>
<section class="education">
<h3>Education</h3>
<h2>School Name, Location - Degree</h2>
<p>Month 20xx to Month 20xx</p>
<p>List of exciting things you did at university</p>
</section>
<section class="career-history">
<h3>Experience</h3>
<div class="company">
<h2>Company Name, Location - Job Title</h2>
<p>Month 20xx to Month 20xx</p>
<ul>
<li>List of achievements</li>
<li>List of achievements</li>
<li>List of achievements</li>
</ul>
<p>Skills: List of skills used or gained at this company</p>
</div>
<div class="company">
<h2>Company Name, Location - Job Title</h2>
<p>Month 20xx to Month 20xx</p>
<ul>
<li>List of achievements</li>
<li>List of achievements</li>
<li>List of achievements</li>
</ul>
<p>Skills: List of skills used or gained at this company</p>
</div>
</section>
<footer>
<h3>Across the Internet</h3>
<a href="https://www.linkedin.com/in/win-nandar-khin-510365194/" target="_blank" aria-label="Visit my LinkedIn profile">Add your linkedIn</a>,
<a href="https://github.com/winnandarkhin" target="_blank" aria-label="Visit my Github profile">Github profile links</a>
</footer>
</body>
</html>