-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (55 loc) · 3.06 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
<!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">
<title>Superhero Hunter Main Page</title>
<link rel="icon" href="images/superhero.png" type="image/x-icon">
<!-- <link rel="stylesheet" type="text/css" href="css/favouriteHero.css"> -->
<link rel="stylesheet" type="text/css" href="css/index.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,500&display=swap"
rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://kit.fontawesome.com/b85ff28d5a.js" crossorigin="anonymous"></script>
<script src="scripts/Index.js" defer></script>
</head>
<body>
<!-- Created Common Header Top for every page : Using bootstrap flex classes to justify the content -->
<div id="common-header-top" class="justify-content-between flex-wrap d-flex">
<span><i class="fas fa-home"></i> When we are here, there's nothing to fear!!
<i class="far fa-kiss-wink-heart "></i></span>
<span> <a href="favouriteHero.html"> Favourites <i class="fa-solid fa-heart fa-beat"
style="--fa-animation-duration: 1s;"> </i> </a> </span>
</div>
<div class="container">
<!-- All content without Heros -->
<div class="justify-content-center flex-wrap d-flex text-center col">
<!-- Main Tite of Page -->
<div id="heading"
class="row justify-content-center flex-wrap d-flex text-center HeadingShadowEffect text-wrap">
Superheroes Hunter
</div>
<!-- Quote Under Title -->
<div id="quote" class="p-1 text-wrap">
“Heroes are made by the path they choose, not the powers they are graced with.”– Iron Man
</div>
<!-- Search Bar -->
<div id="heroSearch" class="justify-content-center flex-wrap d-flex text-center mx-1 text-wrap">
<input type="text" name="heroSearchPlaceholder" id="heroSearchPlaceholder"
class="row justify-content-cente text-center text-wrap "
placeholder="Who's your favorite superhero???">
</div>
</div>
<!-- Displaying all heros after the search bar when type in the bar -->
<div id="HerosContainer" class="justify-content-around flex-wrap d-flex text-wrap">
</div>
</div>
</body>
</html>