-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtweets.html
40 lines (37 loc) · 1005 Bytes
/
tweets.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 lang="en">
<head>
<meta charset="UTF-8">
<title>Tweets</title>
<link rel="stylesheet" href="./style/common.css" type="text/css">
<link rel="stylesheet" href="./style/tweets.css" type="text/css">
</head>
<body class="tweets-page">
<div class="outer-box">
<div class="main-block">
<div class="left-block">
<div class="left-top-color">
</div>
<div class="left-bottom-color">
<h2>Dan Abramov</h2>
<p class="left-middle">Tweets</p>
<p class="left-below">5</p>
</div>
</div>
<div class="right-block">
<div class="textarea-div">
<textarea class="textarea-control" placeholder="What's Happening?"></textarea>
<div class="button-control">
<button>Tweet</button>
</div>
</div>
<div>
<ol>
</ol>
</div>
</div>
</div >
</div>
<script src="./js/tweets.js"></script>
</body>
</html>