-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathindex.html
64 lines (54 loc) · 1.66 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/css/style.css" />
<title>YOUR NAME</title>
<meta name="description" content="some desc">
</head>
<body>
<header class="main-header">
<br>
<h1 class="my-name my-name-large">YOUR NAME</h1>
</header>
<br><br><br>
<section class="content-section container">
<h2 class="section-header">About Me</h2>
<img class="about-prof-image" src="/assets/profile.png" height="200" width="200">
<p> INTRODUCE YOURSELF
</p>
<p>
Relevant Info
</p>
<p>
your interests
</p>
<br><br><br><br><br><br><br><br><br><br><br>
</section>
<br>
<footer class="main-footer">
<div class="container main-footer-container">
<ul class="nav footer-nav">
<li>
<!-- YOUR GITHUB -->
<a href="https://github.com/" target="_blank">
<img class="sm-logo" src="/assets/githubwhite.png" height="50" width="50">
</a>
</li>
<li>
<!-- YOUR LINKEDIN -->
<a href="https://www.linkedin.com/" target="_blank">
<img class="sm-logo" src="/assets/linkedinwhite.png" height="50" width="50">
</a>
</li>
<li>
<a href="https://www.cs.umd.edu/" target="_blank">
<img src="/assets/umd-logo.png" height="34" width="195">
</a>
</li>
</ul>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script type="text/javascript" src="/js/script.js"></script>
</body>
</html>