-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (36 loc) · 1.81 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
<!DOCTYPE html>
<html>
<head>
<title>Anime Search</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href="https://vjs.zencdn.net/8.3.0/video-js.css" rel="stylesheet">
<script src="https://vjs.zencdn.net/8.3.0/video.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/hls.js@1"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body class="bg-dark">
<!-- NAV BAR -->
<div class="container pt-5">
<nav class="nav justify-content-center">
<a class="nav-link" href="#" onclick="HomePage()" aria-current="page">Home</a>
<a class="nav-link" href="#about" aria-current="page">About</a>
<a class="nav-link" href="#" onclick="NewsPage()" aria-current="page">News</a>
<div class="form-inline bg-dark p-2 ml-5 rounded">
<input class="form-control mr-sm-2" type="search" id="searchTXT" placeholder="Anime name here" aria-label="Search">
<button class="btn btn-outline-success" id="searchBtn">Search</button>
</div>
</nav>
</div>
<!-- OUTPUT -->
<div class="container text-light mt-5 p-3 rounded justify-content-center" id="output">
<p>Search for some anime</p>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.0/jquery.min.js" integrity="sha512-3gJwYpMe3QewGELv8k/BX9vcqhryRdzRMxVfq6ngyWXwo03GFEzjsUm8Q7RZcHPHksttq7/GFoxjCVUjkjvPdw==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="script.js"></script>
<footer id="about" class="rounded justify-content-center pt-5 bg-dark text-light">
<p>About section:</p>
<p>Ver 0.0.4</p>
<br>
</footer>
</body>
</html>