-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (39 loc) · 1.25 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
<html>
<head>
<meta charset="UTF-8" />
<link
href="https://fonts.googleapis.com/css?family=Work+Sans:400,600,800&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="styles/index.css" />
<link rel="icon" type="image/png" href="assets/images/superhero-favicon.png">
<title>Home</title>
</head>
<body>
<header id="header-color">
<div class="app-name center">
<a href="index.html" class="rainbow-text">SuperHero App</a>
</div>
<div class="search-container center">
<input type="text" id="search-data" placeholder="start searching..." />
</div>
<div class="favourite-router center">
<button>
<a href="favourites.html" class="rainbow-text">FAVOURITES</a>
</button>
</div>
</header>
<!-- Notification Alert -->
<div id="alert" style="visibility: hidden" class="success change-font">
Success Message
</div>
<div id="alert" style="visibility: hidden" class="failure change-font0">
Error Message
</div>
<!-- Main Search results -->
<div id="result-container">
<div id="results">Search your hero</div>
</div>
<script type="text/javascript" src="scripts/index.js"></script>
</body>
</html>