-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
148 lines (126 loc) · 6.55 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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
<!doctype html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Tweet Tweet</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon_1.jpg">
<!-- ==== Place favicon.ico in the root directory ==== -->
<!-- ==== CSS here ==== -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/fontawesome-all.min.css">
<link rel="stylesheet" href="assets/css/main.css">
<!-- <link rel="stylesheet" href="assets/css/responsive.css"> -->
</head>
<body>
<!-- ||=======-** Header Start **-=======|| -->
<section class="header-area">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="logo text-center">
<img src="./assets/img/twitter_01.png" alt="">
</div>
</div>
</div>
</div>
</section>
<!-- ||=======-** Header End **-=======|| -->
<!-- ||=======-** witter body Start **-=======|| -->
<section class="twitter-body">
<div class="container">
<div class="row mb-50">
<div class="col-md-6">
<div class="tweet_left_wrapper">
<form class="tweet_text-wrap">
<textarea class="tweet_area" placeholder="What's happening ?" name="" id="" cols="30" rows="10"></textarea>
<div class="tweet_bottom d-flex justify-content-between">
<div class="tweet_count">
<span> 0 </span>
<span> / 250</span>
</div>
<button class="tweet_btn tweet_submit_btn">Tweet</button>
</div>
</form>
</div>
</div>
<div class="col-md-6">
<div class="tweet_right_wrapper">
<div class="search_wrap">
<input type="text" name="filter" class="search_tweet" id="" placeholder="Search Twitter">
</div>
<ul class="tweet_post_wrap">
<li class="tweet_item">
<div class="d-flex justify-content-between">
<div class="tweet_post_parent d-flex justify-content-cente">
<span>1</span>
<div>
<a href="#" class="tweet_link">
<p class="tweet_post">Donec nec consectetur libero.</p>
</a>
<p class="tweet_time">This tweet 1 hour ago</p>
</div>
</div>
<span><button class="tweet_btn delete_btn">Delete</button></span>
</div>
</li>
<li class="tweet_item">
<div class="d-flex justify-content-between">
<div class="tweet_post_parent d-flex justify-content-cente">
<span>2</span>
<div>
<a href="#" class="tweet_link">
<p class="tweet_post">In orci mi, viverra quis conva.</p>
</a>
<p class="tweet_time">This tweet 1 hour ago</p>
</div>
</div>
<span><button class="tweet_btn delete_btn">Delete</button></span>
</div>
</li>
<li class="tweet_item">
<div class="d-flex justify-content-between">
<div class="tweet_post_parent d-flex justify-content-cente">
<span>3</span>
<div>
<a href="#" class="tweet_link">
<p class="tweet_post">Proin blandit phare mauris.</p>
</a>
<p class="tweet_time">This tweet 1 hour ago</p>
</div>
</div>
<span><button class="tweet_btn delete_btn">Delete</button></span>
</div>
</li>
<li class="tweet_item">
<div class="d-flex justify-content-between">
<div class="tweet_post_parent d-flex justify-content-cente">
<span>4</span>
<div>
<a href="#" class="tweet_link">
<p class="tweet_post">Nulla ut porttitor lectus.</p>
</a>
<p class="tweet_time">This tweet 1 hour ago</p>
</div>
</div>
<span><button class="tweet_btn delete_btn">Delete</button></span>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- ||=======-** witter body End *-=======|| -->
<!-- ||==============================================|| -->
<!-- ||=======-** JS Start **-=======|| -->
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/main.js"></script>
<!-- ||=======-** JS End **-=======|| -->
<!-- ||==============================================|| -->
</body>
</html>