-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (67 loc) · 2.41 KB
/
index.html
File metadata and controls
68 lines (67 loc) · 2.41 KB
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">
<head>
<meta charset="utf-8" />
<title>Thimbl</title>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.0r4/build/reset/reset-min.css"/>
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.0r4/build/fonts/fonts-min.css"/>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
</head>
<body>
<div id="wrapper">
<img id="logo" src="logo.png" />
<div id="profile">
<table class="clearfix">
<thead>
<tr>
<th colspan="2">
</th>
</tr>
</thead>
<tbody>
<tr>
<td>Name</td>
<td id="name"></td>
</tr>
<tr>
<td>Bio</td>
<td id="bio"></td>
</tr>
<tr>
<td>Website</td>
<td id="website"></td>
</tr>
<tr>
<td>Email</td>
<td id="email"></td>
</tr>
<tr>
<td>Mobile</td>
<td id="mobile"></td>
</tr>
</tbody>
</table>
<a href="" id="editProfile">Edit Profile</a></div>
</div>
<div id="main" class="clearfix">
<div id="posts">
<div class="userPost">
<form>
<textarea placeholder="What're you up to?" class="userPost"></textarea>
<input type="submit" value="POST"></input>
</form>
</div>
</div>
<div id="sidebar">
<h3>Following</h3>
</div>
</div>
</div>
<script type="text/javascript" src="cookies.js"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>