-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (84 loc) · 3.31 KB
/
index.html
File metadata and controls
89 lines (84 loc) · 3.31 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
<!DOCTYPE html>
<html>
<head>
<title>
Twitter Tweets.
</title>
<!-- All meta Tags-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="Tweeter Tweets"/>
<meta property="og:site_name" content="Tweeter tweet extracter"/>
<meta property="og:url" content="http://" />
<meta property="og:description" content="Get all the tweets that is retweeted and has #custserv"/>
<meta property="og:type" content="website" />
<meta property="article:author" content="https://www.facebook.com/mjarpitanand" />
<meta property="og:image" content="http://" />
<meta property="og:image:width" content="300" />
<meta property="og:image:height" content="300" />
<!--End of all the Meta tags-->
<link rel="shortcut icon" href="https://twitter.com/favicon.ico" type="image/x-icon">
<!--All icons-->
<link rel="stylesheet" href="vendors/css/font-awesome.min.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>
<!--End of the all icons-->
<!-- All css-->
<link rel="stylesheet" href="resources/css/init.css"/>
<link rel="stylesheet" href="resources/css/main.css"/>
<link rel="stylesheet" href="resources/css/loader.css"/>
<!--End of All css-->
<!-- All Js-->
<script src="resources/js/script.js"></script>
<script src="resources/js/init.js"></script>
<!--End of All Js-->
</head>
<body id="body">
<!--PreLoader Html-->
<div id="loader-wrapper">
<div id="loader"></div>
<div class="loader-section section-left"></div>
<div class="loader-section section-right"></div>
</div>
<!--End of the preloader html-->
<!--Header of the website-->
<header>
<div class="row">
<div class="col">
<div class="bar" id="menu" onclick="toggle()">
<i class="fa fa-bars"></i>
</div>
<center><i class="fa fa-twitter fa-2x" id="twitter-logo"></i></center>
<div class="right">
<p class="tag">Twitter Tweets</p>
</div>
</div>
</div>
</header>
<!--End Of Header of the website-->
<br /><br/>
<!--Break tags-->
<!--Whole Wrapper-->
<div id="wrapper">
<!--Side Nav-->
<div id="sidebar-wrapper">
<br /><br /><br /><br />
<div class="close" onclick="toggle_close()"><i class="fa fa-close fa-lg"></i></div>
<ul class="sidebar-nav">
<li>
<p>Twitter Tweets Retweeted</p>
</li>
<li>
<p>Posted at least once.</p>
</li>
<br/>
</ul>
</div>
</div>
<!--End of sidenav HTML-->
<!--Post Appended here-->
<div id="page-content-wrapper">
<br /><br />
</div>
<br /><br />
</body>
</html>