-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetails.html
26 lines (25 loc) · 1.2 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
<html>
<head>
<title>SuperHero App</title>
<link rel="stylesheet" href="style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous"> </head>
<body onload="detailsPage()">
<!-- header section -->
<header id="details-header">
<a href="index.html">Home</a>
<a href="favourites.html">Favourites</a>
</header>
<header id="tools-selector">
<a href="#powerstats">Powerstats</a>
<a href="#appearance-target">Appearance</a>
<a href="#biography-target">Biography</a>
</header>
<div id="detailsContainer-main">
<div class="card" id="imgContainer">
</div>
<div id="detailsContainer">
</div>
</div>
<script src="details.js"></script>
</body>