-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtweets.html
92 lines (86 loc) · 3.25 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous" />
<script src="https://kit.fontawesome.com/b99e675b6e.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script>
$(document).ready(function () {
$(".hamburger").click(function () {
$(".wrapper").toggleClass("collapsed");
});
});
</script>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="wrapper collapsed">
<div class="top_navbar">
<div class="hamburger">
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
</div>
<div class="top_menu">
<div class="logo">
Covid19 WebApp
</div>
<ul>
<li>
<a href="#">
<i class="fas fa-search"></i>
</a>
</li>
<li>
<a href="#">
<i class="fas fa-bell"></i>
</a>
</li>
<li>
<a href="#">
<i class="fas fa-user"></i>
</a>
</li>
</ul>
</div>
</div>
<div class="sidebar">
<ul>
<li>
<a href="index.html">
<span class="icon"><i class="fas fa-tachometer-alt"></i></span>
<span class="title">Dashboard</span>
</a>
</li>
<li>
<a href="tweets.html" class="active">
<span class="icon"><i class="fab fa-twitter"></i></span>
<span class="title">Tweets</span>
</a>
</li>
</ul>
</div>
<div class="main_container" style="">
<div class="row align-items-center" style="margin-top: 0px;">
<div class="col-lg-5 px-5 mx-auto" style="">
<p class="display-4 font-weight-bold" style="color: black; margin-top: 0px;">
Tweets
</p>
<img src="svg/tweet.svg" alt="..." class="img-fluid mb-4 mb-lg-0" />
</div>
<div class="col-lg-6">
<div class="tweets mx-auto">
<a class="twitter-timeline" href="https://twitter.com/cmohry"
data-height="500px" data-width="500px">Tweets by dcjammuofficial</a>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</div>
</div>
</div>
</div>
</body>
</html>