-
Notifications
You must be signed in to change notification settings - Fork 0
/
student_template.html
40 lines (40 loc) · 984 Bytes
/
student_template.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
<!DOCTYPE html>
<html>
<head>
<title>Digital Wesleyan Fellowship</title>
<link href="students.css" rel="stylesheet"/>
<link href="./fonts/fontawesome/css/font-awesome.min.css" rel="stylesheet"/>
</head>
<body>
<div class="header">
<div class="headshot"></div>
<img src="#"/>
<h1 class="name">Ashley Williams</h1>
<ul class="social">
<li><a href="#">
<i class="fa fa-twitter fa-lg"></i>
</a></li>
<li><a href="#">
<i class="fa fa-linkedin fa-lg"></i>
</a></li>
<li><a href="#">
<i class="fa fa-github fa-lg"></i>
</a></li>
</ul>
</div>
<div class="about">
<h2>About</h2>
<ul>
<li>Major:</li>
<li>Graduation Year:</li>
<li>Hometown:</li>
</ul>
<h2>Bio</h2>
<p>bio goes here</p>
</div>
<div class="project">
<h2>Project</h2>
<h3>COMING SOON!</h3>
</div>
</body>
</html>