-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (27 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags for defining character set and viewport -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Title of the webpage -->
<title>Superhero Hunter</title>
<!-- Bootstrap CSS linked from CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap JavaScript bundled from CDN -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom CSS file linked -->
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<!-- Placeholder div for the navbar -->
<div id="navbarPlaceholder"></div>
<!-- Container div to hold the main content, with margin top and centered content -->
<div class="container mt-3 justify-content-center" id="contentContainer">
</div>
<!-- Crypto-js library linked from CDN for cryptographic functionalities -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js"></script>
<!-- Custom JavaScript file linked -->
<script src="javaScript/index.js"></script>
</body>
</html>