-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="google-site-verification" content="xxRPsXsOtp9xQEK8oAXZadrZhzoB3jMtmLS33at9zjk" />
<link rel="stylesheet" href="index.css">
<title>Superhero hunter</title>
</head>
<body>
<div class="container">
<div class="navbar">
<img src="./static/logo.png" alt="" class="logo">
<div class="wrapper">
<span class="super">Super</span><span class="hero">hero</span>
</div>
<a href="./favorite.html">
<button class="favoriteBtn">favorite</button>
</a>
</div>
<div class="search">
<form class="input_form" action="">
<input class="textInput" type="text" placeholder="search...">
</form>
</div>
<div class="item-container">
</div>
</div>
<!-- crypto js linking -->
<script
src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.2.0/crypto-js.min.js"
integrity="sha512-a+SUDuwNzXDvz4XrIcXHuCf089/iJAoN4lmrXJg18XnduKK6YlDHNRalv4yd1N40OKI80tFidF+rqTFKGPoWFQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script src="index.js"></script>
</body>
</html>