-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
83 lines (79 loc) · 2.62 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
<!DOCTYPE html>
<html>
<head>
<title>Your name resume</title>
<!-- font awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<!-- your css styling file -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="header">
<!-- resume header with your name and title -->
<h1>YOUR NAME</h1>
<hr>
YOUR TITLE
<hr>
</header>
<main>
<article id="mainLeft">
<section>
<h2>CONTACT</h2>
<!-- contact info including social media -->
<p>
<i class="fa fa-envelope" aria-hidden="true"></i>
<a href="mailto:[email protected]">[email protected]</a>
</p>
<p>
<i class="fab fa-github" aria-hidden="true"></i>
<a href="https://github.com/gh-username">gh-username</a>
</p>
<p>
<i class="fab fa-linkedin" aria-hidden="true"></i>
<a href="https://linkedin.com/linkedin-username">linkedin-username</a>
</p>
</section>
<section>
<h2>SKILLS</h2>
<!-- your skills -->
<p>HTML, CSS, GitHub, VS Code...</p>
</section>
<section>
<h2>EDUCATION</h2>
<!-- your education -->
<h3>YOUR MAJOR</h3>
<p>
Your university or school
</p>
<p>
2018-2022
</p>
</section>
</article>
<article id="mainRight">
<section>
<h2>ABOUT</h2>
<!-- about you -->
<p>A brief paragraph about you and what kind of company you want to work for.</p>
</section>
<section>
<h2>WORK EXPERIENCE</h2>
<!-- your work experience -->
<h3>JOB TITLE</h3>
<p>
Company Name | 2008 - 2010
</p>
<p>
Describe what you did in this position with one summary sentence and no more than 3 bullet points
with specific highlights
</p>
<ul>
<li>Cool accomplishment</li>
<li>Cool accomplishment</li>
<li>Cool accomplishment</li>
</ul>
</section>
</article>
</main>
</body>
</html>