forked from maverickwolfe21/superhero-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.html
52 lines (49 loc) · 1.37 KB
/
details.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./assets/css/style.css" />
<title>Superhero Search</title>
<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=Roboto:wght@300&display=swap" rel="stylesheet" />
</head>
<body class="details-container">
<h1 class="header">Superhero Search!</h1>
<div class="animation-box"> </div>
<div id="superhero-info">
<table id="superhero-appearance">
<tr>
<th>Appearance</th>
<th>Data</th>
</tr>
</table>
<table id="superhero-biography">
<tr>
<th>Biography</th>
<th>Data</th>
</tr>
</table>
<table id="superhero-connections">
<tr>
<th>Connections</th>
<th>Data</th>
</tr>
</table>
<table id="superhero-powerstats">
<tr>
<th>Stats</th>
<th>Data</th>
</tr>
</table>
<table id="superhero-work">
<tr>
<th>Work</th>
<th>Data</th>
</tr>
</table>
</div>
</body>
<script src="./assets/js/detailsScript.js"></script>
</html>