-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
135 lines (89 loc) · 2.7 KB
/
index.html
File metadata and controls
135 lines (89 loc) · 2.7 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<!-- INDEX -->
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset="utf-8">
<title>James Twitter World</title>
<link rel="stylesheet" href="assets/stylesheets/main.css">
<script src="jquery.js"></script>
<script src="data_generator.js"></script>
</head>
<body>
<!-- HEADER -->
<header class="row group">
<h1 class="grid">
<a href="index.html" class="logo">James Twitter World</a>
<nav class="nav">
<ul>
<li class="search-bar"></li><!--
--><li><a href="index.html">Profile</a></li><!--
--><li><a href="index.html">Tweet</a></li>
</ul>
</nav>
</h1>
<div class="row-alt"></div>
<div class="container">
<a href="index.html">
<img src="assets/images/blastooo.jpg" alt="James">
</a>
<h5 class="stats">
<ul>
<li>Tweets<h4 id=tweetsStat>0<h4></li><!--
--><li>Following<h4>6<h4></li><!--
--><li>Followers<h4>8<h4></li>
</ul>
</h4>
</div>
</header>
<!-- DASHBOARD -->
<section>
<div class="container group">
<!-- PROFILE -->
<section class="col-1-3">
<div class="profile">
<div>
<h3>James Lee</h3>
</div>
<div>
<h4>@blastooo</h4>
</div>
<h5>Follows You</h5>
<h4 class="status">Back on the mothership but all around the world</h4>
<h5>Joined July 2008</h5>
<a href="index.html"><div class="btn">Tweet</div></a>
<a href="index.html"><div class="btn">Message</div></a>
</div>
</section><!--
TWEETS
--><section class="col-2-3">
<div class="tweets">
<!-- POST NEW TWEET -->
<h4>
<img src="assets/images/blastooo.jpg" alt="James">
<form id="new-tweet">
<input type="text" id="tweet" placeholder="What's happening?">
</form>
</h4>
<p class="visible">
<!-- VISIBLE TWEETS -->
<div class="toggler"><h5>See More</h5></div>
</p>
<p class ="hidden">
<!-- HIDDEN TWEETS -->
</div>
</section>
</div>
</section>
<!-- FOOTER -->
<footer class="grid group">
<small>© James Twitter World</small>
<nav class="nav">
<ul>
<li><a href="index.html">FAQ</a></li><!--
--><li><a href="index.html">Contact</a></li>
</ul>
</nav>
</footer>
<script src="scripts.js"></script>
</body>
</html>