-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
80 lines (76 loc) · 3.03 KB
/
index.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Ranime
</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
</head>
<body>
<nav class="navbar navbar-toggleable-md navbar-light bg-faded" style="background-color: #007f5b;">
<a class="navbar-brand" href="#"><img class='ranime' src="ranime.png" alt=""></a>
<span class="navbar-text"></span>
</div>
</nav>
<main>
<div class="howTo justify-content-center">
<h2>Find your favorite anime as easy as 1, 2, 3.<br> <br>Don't know what to watch?<br>Click our RANIME button to get a random anime.</h2>
</div>
<div class="container list">
<div class="row">
<div class="col-12">
<h5><ol>
<li>Enter search criteria.</li>
<li>Select title or genre.</li>
<li>Click search.</li>
</ol></h5>
</div>
</div>
</div>
<label for="main"></label>
<div id="main" class="container-fluid search-buttons">
<div class="row">
<div class="col-12 col-lg-auto col-sm">
<form class="form-inline" action="index.html" method="get">
<div class="form-group">
<label for="search"></label>
<input id="search" class='search' type="text" name="" value="" placeholder='Search "Attack on Titan" or "Action"'>
<select class="custom-select">
<option selected disabled>Select One</option>
<option value="text">Title</option>
<option value="genres">Genre</option>
</select>
<button class="searchButton" type="submit" name="button">Search</button>
</div>
</form>
</div>
<div class="col col-md-auto">
<button type="button" class="btn btn-secondary btn-lg ranbtn">RANIME</button>
</div>
</div>
</div>
<div class="container-fluid info">
<div class="box">
<div class="row justify-content-center">
<img class="loading hide" src="animeLoadingGif.gif" alt="">
<img class="errorLoading hide"src="errorGif.gif" alt="">
</div>
<div class="row details">
</div>
</div>
</div>
</main>
<footer class="footer">
<div class="container">
<small>© Copyright 2017, RANIME</small>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
<script type="text/javascript" src='app.js' charset="utf-8"></script>
</body>
</html>