-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
89 lines (83 loc) · 2.91 KB
/
about.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!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" />
<!-- Favicon ICON -->
<link rel="icon" href="./shield.png" type="image/gif" />
<!-- Nunito Font Family -->
<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=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet"
/>
<!-- custom stylesheet -->
<link rel="stylesheet" href="./index.css" />
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<title>Super Hero Hunter</title>
</head>
<body>
<!-- Navigation Menu bar With Title -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<a class="navbar-brand" >
<img
src="/shield.png"
alt=""
width="30"
height="24"
class="d-inline-block align-text-top"
/>
Super Hero Hunter
</a>
<!-- Favourite Superhero Button -->
<div class="d-flex">
<button class="btn btn-success btn-sm" type="submit">
<a class="nav-link link-light" href="./favourites.html"
>Favourites</a
>
</button>
</div>
</div>
</nav>
<section class="about-sec">
<div class="text-center p-5">
<h1>About Superheros!</h1>
</div>
<!-- details of the superhero -->
<div class="container pb-5 mx-auto align-self-center">
<div id="info">
<div id="name">Name</div>
<div id="id">ID</div>
<div id="desc">Description</div>
<div id="comic">Comics</div>
<div id="series">series</div>
<div id="stories">stories</div>
<div id="count">stories</div>
<div id="modified">stories</div>
<div id="status">stories</div>
<div id="total">stories</div>
<div id="limit">stories</div>
<div id="offset">stories</div>
<div id="code">stories</div>
<div class="d-flex justify-content-between mt-3" id="buttons">
<!-- button for directing to about page -->
<button class="btn btn-dark btn-sm">
<a class="nav-link link-light" href="./index.html">Back</a>
</button>
</div>
</div>
</div>
</section>
<!-- script for about js -->
<script src="./about.js"></script>
</body>
</html>