-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (77 loc) · 2.89 KB
/
index.html
File metadata and controls
77 lines (77 loc) · 2.89 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SEO Meta Tags -->
<meta name="description" content="Single Page CV of Sujal." >
<meta name="author" content="Sujal Joshi">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Sujal Joshi">
<meta property="og:description" content="Single Page CV of Sujal.">
<meta property="og:image" content="CV.jpg" >
<meta property="og:type" content="website" >
<meta property="og:url" content="https://single-page-cv" >
<!-- Favicon-->
<link rel="icon" type="image/jpg" href="CV.jpg">
<link rel="stylesheet" href="styles.css">
<title>Single-Page CV</title>
</head>
<body>
<main>
<section id="details">
<hr>
<h1>Your Name</h1>
<h3 class="subHeading">Junior Frontend Developer</h3>
<div class="content">
<h3>123 Your Street</h3>
<h3>Your City, St 12345</h3>
<h3>(123) 456-7890</h3>
<h3>no_reply@example.com</h3>
</div>
</section>
<section id="skill">
<h3 class="subHeading">Skills</h3>
<div class="content">
<h3>HTML, CSS, JavaScript, Accessibility, Figma to Design, Responsive Web Design, Technical Writing,
Presentation
</h3>
</div>
</section>
<section id="Education">
<h3 class="subHeading">Education</h3>
<div class="content">
<h3 class="intel">School Name, Location - Degree</h3>
<h3>Month 20xx to Month 20xx</h3>
<h3>List of exciting things you did at University</h3>
</div>
</section>
<section id="experience">
<h3 class="subHeading">Experience</h3>
<div class="content">
<h3 class="intel">Comapny Name, Location - Job Title</h3>
<h3>Month 20xx to Month 20xx</h3>
<ul>
<li>List of achievements</li>
<li>List of achievements</li>
<li>List of achievements</li>
</ul>
<h3>Skills: skills used or gained at this company</h3>
</div>
<div class="content">
<h3 class="intel">Comapny Name, Location - Job Title</h3>
<h3>Month 20xx to Month 20xx</h3>
<ul>
<li>List of achievements</li>
<li>List of achievements</li>
<li>List of achievements</li>
</ul>
<h3>Skills: skills used or gained at this company</h3>
</div>
</section>
<section id="social">
<h3 class="subHeading">Across the Internet</h3>
</section>
</main>
</body>
</html>