-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (49 loc) · 2.4 KB
/
index.html
File metadata and controls
64 lines (49 loc) · 2.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge"><link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="images/favicon.ico">
<script src="https://use.fontawesome.com/951c5bdac2.js"></script>
<title>Readit</title>
</head>
<body>
<div class="top">
<img src="images/logo.png" class="logo" alt="Logo">
<h1 class="head">Reddit and beyond!</h1>
</div>
<div id="search-container" class="container">
<div id="search" class="card card-body bg-light mb-2">
<h4>Subreddit:</h4>
<form id="form" autocomplete="off">
<div class="form-group">
<input type="text" id="input" class="form-control mb-3" placeholder="Search Term...">
</div>
<h5 class="mt-2">Posts: </h5>
<div class="form-group">
<select name="limit" id="posts" class="form-control">
<option value="5">5</option>
<option value="10">10</option>
<option value="25" selected>25</option>
<option value="50">50</option>
<option value="100">100</option>
</select>
</div>
<button type="submit" class="btn btn-dark btn-block mt-4">Search</button>
</form>
</div>
</div>
<div id='post'></div>
<div class="bottom-container">
<a class="fa fa-github fa-2x" aria-hidden="true" href="https://github.com/sudo-rgorai" target="_blank"></a>
<a class="fa fa-envelope fa-2x" aria-hidden="true" href="mailto:rahul.gorai.3141@gmail.com" target="_blank"></a>
<a class="fa fa-facebook fa-2x" aria-hidden="true" href="https://www.facebook.com/rahul.gorai.526" target="_blank"></a>
<p class="copyright">© 2020 Rahul Gorai.</p>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="index.js"></script>
</body>
</html>