-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
91 lines (85 loc) · 3.41 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
89
90
91
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>My Portfolio Site</title>
<!-- to add tab icon
<link rel="shortcut icon" href="your_image_path_and_name.ico" />
-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
</head>
<body>
<!--
To customize site:
-Add name on line 26
-Add the profile image with your own profile pic
-Update the bio on line 28
A-dd links to respective accounts/files on lines 30-35
-Add projects:
-Add images by placing images in the images/ folder and updating the name inside that project
-Add a link to where the project is being hosted (github, file, etc.)
-Update the Project Name
Note: This is meant to be a template, so once everything is filled in,
Start messing around with the styling/layout and have some fun!
-->
<section class="info">
<h1 class="name">Full Name</h1>
<img class="profileImg" src="./images/profile.jpg" alt="profile pic">
<p class="bio">I am a person, this is my bio, click some links, look at some projects, have a good time.</p>
<ul class="links">
<li><a href="">Resume</a></li>
<!-- to link a resume, make sure the file is in the same directory
and call it like an image, ex './resume.pdf'-->
<li><a href="https://github.com/StevensCSC/">GitHub</a></li>
<li><a href="mailto:EMAIL@ADDRESS">Email</a></li>
<li><a href="">LinkedIn</a></li>
</ul>
</section>
<section class="projects">
<!-- to add a new project copy and paste this, fill it in:
<div class="project">
<a href ="https://github.com">
<img src="./images/">
<div class="projTxt">
<h2 class="projName">Project Name</h2>
</div>
</a>
</div>
-->
<div class="project">
<a href ="https://github.com">
<img src="./images/profile.jpg">
<div class="projTxt">
<h2 class="projName">Project Name</h2>
</div>
</a>
</div>
<div class="project">
<a href ="https://github.com">
<img src="./images/">
<div class="projTxt">
<h2 class="projName">Project Name</h2>
</div>
</a>
</div>
<div class="project">
<a href ="https://github.com">
<img src="./images/">
<div class="projTxt">
<h2 class="projName">Project Name</h2>
</div>
</a>
</div>
<div class="project">
<a href ="https://github.com">
<img src="./images/">
<div class="projTxt">
<h2 class="projName">Project Name</h2>
</div>
</a>
</div>
</section>
</body>
</html>