-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (59 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Title of the page -->
<title>Superhero Hunter</title>
<link rel="icon" type="image" href="assets/favicon.png">
<!-- External CSS for Font Awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<!-- Navigation bar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<!-- Logo redirects to the homepage -->
<a class="navbar-brand" href="index.html">
<img src="assets/logo.png" alt="Logo" height="40" width="120">
</a>
<!-- Navbar toggler button for mobile -->
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#mynavbar">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar links -->
<div class="collapse navbar-collapse" id="mynavbar">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<!-- Home link -->
<li class="nav-item ms-4">
<a class="nav-link" href="index.html" id="home">Home</a>
</li>
<!-- Favorites link -->
<li class="nav-item ms-3">
<a class="nav-link" href="favorites.html" id="favorites">My Favorite Superheroes</a>
</li>
</ul>
<form class="d-flex">
<img src="assets/search.png" alt="Logo" height="40" width="40">
<input class="form-control me-2" id="searchInput" type="text" placeholder="Search the superhero name" oninput="getSearchedData()">
</form>
</div>
</div>
</nav>
<!-- Main content container -->
<div class="container mt-3" id="contentContainer">
<!-- All the results will be shown here -->
</div>
<!-- Bootstrap Bundle with Popper for Bootstrap components -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom JavaScript -->
<script src="javascript/index.js"></script>
</body>
</html>