-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
executable file
·40 lines (37 loc) · 1.1 KB
/
popup.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>
<head>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="jquery-3.1.1.min.js"></script>
<script src="script.js"></script>
</head>
<body>
<div id="menuBackground">
<div class="container" id="menu">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
<input id="subreddit" type="text" placeholder="subreddit" class="font menuElements">
<select id="subredditList" class="font menuElements">
</select>
<select id="sorting" class="font menuElements">
<option value="hot" class="menuElements" selected>hot</option>
<option value="new" class="menuElements">new</option>
<option value="rising" class="menuElements">rising</option>
<option value="controversial" class="menuElements">controversial</option>
<option value="top" class="menuElements">top</option>
</select>
</div>
<ul id="list">
<li id="post">
<a id="link" href="" target="_blank">
<div id="title">
</div>
<div id="text">
</div>
</a>
</li>
</ul>
</body>
</html>