-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
68 lines (63 loc) · 2.62 KB
/
index2.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
<!doctype html>
<html lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<title>Custom CSS3 Avatars - Demo #3</title>
<meta name="author" content="Jake Rocheleau">
<link rel="shortcut icon" href="http://vandelaydesign.com/favicon.ico">
<link rel="icon" href="http://vandelaydesign.com/favicon.ico">
<link rel="stylesheet" type="text/css" media="all" href="styles.css">
<link rel="stylesheet" type="text/css" media="all" href="http://fonts.googleapis.com/css?family=Cantora+One">
<!--[if lt IE 9]>
<script type="text/javascript" src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<header>
<div class="wrapper">
<div class="clearfix">
<h1 id="logo"><a href="javascript:void(0)">My.Startup</a></h1>
<nav>
<ul id="topnav" class="clearfix">
<li><a href="javascript:void(0)">Home</a></li>
<li><a href="javascript:void(0)">Users</a></li>
<li><a href="javascript:void(0)">Popular</a></li>
<li><a href="javascript:void(0)">My Profile</a></li>
<li><a href="javascript:void(0)">Logout</a></li>
</ul>
</nav>
</div><!-- @end .clearfix -->
</div><!-- @end .wrapper -->
</header>
<div class="wrapper">
<div id="content" class="clearfix">
<div id="leftcol">
<div class="avatar-container">
<!-- Avatar Source: http://vimeofaces.tumblr.com/post/932459489 -->
<img src="images/avatar.jpg" alt="Default avatar" title="User Avatar" width="250" height="250" class="ava3">
</div>
<h2 class="username">Johnny Appleseed</h2>
<h3 class="location">Boston, MA</h3>
<div class="divider"> </div>
<p class="desc">Frontend web developer and startup enthusiast. I would say that I like Apple products but nobody really cares anyways.</p>
</div><!-- @end #leftcol -->
<div id="rightcol">
<nav class="profiletabs">
<ul class="clearfix">
<li><a href="index.html">Demo #1</a></li>
<li><a href="index1.html">Demo #2</a></li>
<li><a href="index2.html" class="sel">Demo #3</a></li>
<li><a href="index3.html">Demo #4</a></li>
<li><a href="index4.html">Demo #5</a></li>
</ul>
</nav>
<div class="feed">
<h3 class="headline">Profile Feed:</h3>
<h4>User has no recent activity.</h4>
</div>
</div><!-- @end #rightcol -->
</div><!-- @end #content -->
</div><!-- @end .wrapper -->
<footer><!-- add some extra space --></footer>
</body>
</html>