-
Notifications
You must be signed in to change notification settings - Fork 0
/
superhero.html
31 lines (25 loc) · 1.27 KB
/
superhero.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
<html>
<head>
</head>
<link rel="stylesheet" href="superhero.css">
<script src="https://kit.fontawesome.com/d80069c1ff.js" crossorigin="anonymous"></script>
<body>
<title>Superhero</title>
<div id="home">Home</div>
<div id="favourite">Favourite</div>
<i class="fa-solid fa-star" id=""></i>
<div id="Superhero_detail" class="">
<div id="photo"></div>
<div id="other_details">
<div id="name"></div>
<div class="commonHeadingFeatures">Description: <div class="informationList" id="description"></div></div>
<div class="commonHeadingFeatures">Comics: <div class="informationList" id="comics"></div></div>
<div class="commonHeadingFeatures">Events: <div class="informationList" id="events"></div></div>
<div class="commonHeadingFeatures"> Series: <div class="informationList" id="series"></div></div>
<div class="commonHeadingFeatures"> Stories: <div class="informationList" id="stories"></div></div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.0.0/crypto-js.min.js"></script>
<script src="superhero.js"></script>
</body>
</html>