forked from Shnaeem/Quotivate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexplore.html
More file actions
70 lines (58 loc) · 2.48 KB
/
Copy pathexplore.html
File metadata and controls
70 lines (58 loc) · 2.48 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
<!DOCTYPE html>
<html>
<head>
<title>Quotivate</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<!-- Navbar for the window -->
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-main">
<span class="sr-only"> Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"> <img src="img/logo_orange.png" alt=""></a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse-main">
<ul class="nav navbar-nav">
<!-- <li class="nav-flexing"> <a class="active" href="index.html">Home</a></li> -->
<li class="nav-flexing"> <a href="explore.html">Explore</a></li>
<li class="nav-flexing"> <a href="topics.html">Topics</a></li>
<li class="nav-flexing"> <a href="quotes.html">Quotes</a></li>
<li class="nav-flexing"> <a href="aboutus.html">About Us</a></li>
<li class="nav-flexing"> <a href="contactus.html">Contact Us</a></li>
</ul>
</div>
</div>
</nav>
<div id="exploreBg">
<div class="landing-text">
<div>
<h1 id="exploreH1">Explore Quotes</h1>
<div class="col-lg-12 ">
<div class="input-group md-form form-sm form-1 pl-0 " id="searchbarcontainer">
<input class="form-control my-0 py-1 searchbar" type="text" placeholder="Search by Keyword"
aria-label="Search" id="SearchbyKw">
<a href="#" class="btn btn-default btn-lg" id="SearchbyKwBtn">Search</a>
</div>
</div>
</div>
<!-- Button to get to top -->
<button id="myBtn" title="Go to top">Top</button>
<!-- Generate cards inside the container -->
<div class="container-card-holder">
</div>
</div>
</div>
<script src="js/SearchbyKeyword.js"></script>
<script src="js/main.js"></script>
</body>
</html>