-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
41 lines (32 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Bio Page Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body class="animated bounceInDown">
<div class="avatar">
<img src="img/avatar.png" alt="Avatar">
</div>
<div class="content">
<h1 class="title">Bio Name</h1>
<p>
Bio description goes here.
</p>
<ul class="social-icons">
<li><a class="twitter" href="" title="Twitter">Twitter</a></li>
<li><a class="facebook" href="#" title="Facebook">Facebook</a></li>
<li><a class="googleplus" href="#" title="Google+">Google+</a></li>
<li><a class="dribbble" href="#" title="Dribbble">Dribbble</a></li>
<li><a class="instagram" href="#" title="Instagram">Instagram</a></li>
<li><a class="flickr" href="#" title="Flickr">Flickr</a></li>
</ul>
<p><a href="mailto:emailaddress">Email me</a>.</p>
</div>
</body>
</html>