-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (53 loc) · 1.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>marvel website</title>
<link rel="stylesheet" href="./asset/home.css">
</head>
<body>
<nav id="navbar">
<div id="logo">
<img src="./image/icons8-marvel-logo-96.png" alt="#">
</div>
<div id="pages">
<li>
<a href="./index.html" id="home">Home</a>
</li>
<li>
<a href="./superheropage.html" id="super">SuperHeroes</a>
</li>
<li>
<a href="./favorite.html" id="favour">Favorite</a>
</li>
</div>
<div id="search">
<input type="text" placeholder="Search Your Superhero" id="search_id">
<button id="Magic">
<span><i class="fa-solid fa-wand-sparkles" style="color: #ffffff;"></i></span>
Magic
</button>
<div id="search_help">
</div>
</div>
</nav>
<div id="container">
<div id="left">
<i class="fa-solid fa-angle-left fa-fade"></i>
</div>
<div id="card-container">
</div>
<div id="right">
<i class="fa-solid fa-angle-right fa-fade"></i>
</div>
</div>
<footer>
marvel.com
</footer>
<script src="https://kit.fontawesome.com/a2466d3c1a.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/crypto-js.js"></script>
<!-- <script src="./jquery-3.7.0.js"></script> -->
<script src="./asset/home.js"></script>
</body>
</html>