-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (27 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" href="style.css">
<title>Anime</title>
</head>
<body>
<div class="navheader" align="center">
<h1>Anime Center</h1>
<h6>Search for your favorite anime here</h6>
</div>
<div class="container" align="center">
<form id="search-form" action>
<input type="text" name="search" class="search_input" id="search" placeholder="Search by name..."/>
<!-- <div class="search_icon">
<i class="fa fa-search btn btn-outline-secondary bg-white border-bottom-0 border rounded-pill ms-n5" aria-hidden="true"></i>
</div> -->
</form>
</div>
<div id="search-results" class="container1">
</div>
<script src="script.js"></script>
</body>
</html>