-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (35 loc) · 1.46 KB
/
index.html
File metadata and controls
48 lines (35 loc) · 1.46 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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Twitter search engine</title>
<link href="styles/main.css" rel="stylesheet" />
<script type="text/javascript" src="scripts/jquery-1.9.1.min.js"></script>
<script type="text/javascript" src="scripts/Screen.js"></script>
<script type="text/javascript" src="scripts/Templates.js"></script>
<script type="text/javascript" src="scripts/Service.js"></script>
<script type="text/javascript" src="scripts/TweetSearchManager.js"></script>
</head>
<body>
<div class="main_container">
<div class="main_logo"><img alt="" src="images/twitter.png" /></div>
<div id='search-box'>
<div id='search-form'>
<input id='search-text' name='q' placeholder='Search tweets...' type='text'/>
<button id='search-button' onclick="SearchTweets()"><span>Search</span></button>
</div>
</div>
<div class="tweet_results">
<div class="loading_bar_container">
<div class="loading_bar_inner_container">
<div class="loading_bar">
<img alt="" src="images/loading.gif" />
</div>
</div>
</div>
<div class="tweet_not_found"><img alt="" src="images/twitter_sad.png" /><span id="tweet_not_found_text">No tweets found.. :(</span></div>
</div>
</div>
</body>
</html>