-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
87 lines (87 loc) · 3.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="index.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<script src="https://code.iconify.design/iconify-icon/1.0.2/iconify-icon.min.js"></script>
<link
href="https://fonts.googleapis.com/css2?family=Fira+Code&family=Inter&display=swap"
rel="stylesheet"
/>
<title>Website Template</title>
</head>
<body>
<nav>
<a href="#projects">Projects</a>
<a href="#experience">Experience</a>
<a href="#resume">Resume</a>
<a href="#socials">Socials</a>
</nav>
<div class="center-section">
<div class="intro-section">
<h3 class="intro">Hi, my name is</h3>
<h1 class="name">[your name]</h1>
<h1 class="description">I am a computer science major</h1>
<p class="description2">
I am a software engineering student interested in X, Y and Z
</p>
</div>
<div class="projects" id="projects">
<h4 class="block-title">Projects</h4>
<div class="project-box">
<h5 class="project-name">Project Name 1</h5>
<p class="project-description">
Write the project description, include tools, and the objective of
the project
</p>
</div>
<div class="project-box">
<h5 class="project-name">Project Name 2</h5>
<p class="project-description">
Write the project description, include tools, and the objective of
the project
</p>
</div>
</div>
<div class="experience" id="experience">
<h4 class="block-title">Experience</h4>
<div class="exp-box">
<h5 class="project-name">Software Engineer Intern at [Location]</h5>
<p class="project-description">
Write the experience description, include the tools, location,
duration
</p>
</div>
</div>
<div class="resume" id="resume">
<h4 class="block-title">Resume</h4>
<a
href="[link to your resume]"
class="resume-link"
target="_blank"
rel="noopener noreferrer"
>View my resume</a
>
</div>
<div class="Socials" id="socials">
<h4 class="block-title">Socials</h4>
<a href="https://github.com/[username]">
<iconify-icon icon="mdi:github"></iconify-icon>
</a>
<a href="https://www.linkedin.com/in/[username]">
<iconify-icon icon="mdi:linkedin"></iconify-icon>
</a>
<a href="https://www.instagram.com/[username]">
<iconify-icon icon="mdi:instagram"></iconify-icon>
</a>
<a href="https://twitter.com/[username]">
<iconify-icon icon="mdi:twitter"></iconify-icon>
</a>
</div>
</div>
</body>
</html>