-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
50 lines (40 loc) · 1.84 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<!-- <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous"> -->
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link href="./CSS/stylehero.css" rel="stylesheet" />
<title>SuperheroApp</title>
</head>
<body>
<nav>
<div class="left">
<a class="navbar-brand" href="index.html">
<img src="./Assests/superhero.png" alt="" width="50" height="44">
</a>
<!-- <button><a style="text-decoration: none;" href="index.html"><p style="color: white;">SuperheroJS</p></a></button> -->
</div>
<div class="right">
<a href="favourites.html" class="link">Favourites</a>
</div>
</nav>
<main id="main">
<center><h2 style="color: rgb(179, 255, 2); font-weight: bold;">ENTER THE NAME OF SUPERHERO</h2></center>
<input type="search" id="search" placeholder="Search a Superhero..." autocomplete="off" />
<div class="loader"></div>
<ul id="search-results-list">
</ul>
</main>
<div id="toast"></div>
<script src="js/common.js"></script>
<script src="js/index.js"></script>
<script>
Main.init();
</script>
</body>
</html>