generated from sagars729/cmsc388T-web-template
-
Notifications
You must be signed in to change notification settings - Fork 37
/
index.html
84 lines (75 loc) · 2.45 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/styles.css">
<script src="js/scripts.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<header>
<nav class="same-line">
<div class="topnav left">
<a href="#home">YOUR NAME</a>
</div>
<div class="topnav right">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#project">Projects</a>
<!-- <a href="#about">About</a> -->
</div>
</nav>
</header>
<body>
<section id="home">
<div class="same-line-panel">
<img id="image" src=profile.png>
<div class="center">
<h1>YOUR NAME</h1>
<h2>Undergraduate Student</h2>
<h3>Majors, Minors</h3>
</div>
</div>
</section>
<section id="about">
<div class="container">
<h1 class="section-header">About Me</h1>
</div>
<div class="same-line-panel reveal">
<img id="logo" src=logo.png>
<div class="panel">
<p>Put your Bio Here</p>
</div>
</div>
</section>
<section id="project">
<div class="container">
<h1 class="section-header">Projects</h1>
<div class="row">
<div class="column reveal" style="background-color:#A4969B;">
<h2>Project 1 Title</h2>
<p>Description of Project 1...</p>
</div>
<div class="column reveal" style="background-color:#BFB5B9;">
<h2>Project 2 Title</h2>
<p>Description of Project 2...</p>
</div>
<div class="column reveal" style="background-color:#D1CACD;">
<h2>Project 3 Title</h2>
<p>Description of Project 3...</p>
</div>
</div>
</div>
</section>
</body>
<footer>
<div class="leftFooter">
YOUREMAIL@EMAIL.COM
</div>
<div class="rightFooter">
<a href="https://www.google.com/" class="fa fa-github" style="font-size:36px"></a>
</div>
<div class="rightFooterr">
<a href="https://www.google.com/" class="fa fa-linkedin" style="font-size:36px"></a>
</div>
</footer>
</html>