-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (32 loc) · 1.24 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>Dark Mode</title>
<!-- Necessary libraries and hyper-links for the website -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap Library for responsiveness -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<!-- Icon for the dark mode -->
<script src="https://kit.fontawesome.com/91e547386c.js" crossorigin= "anonymous"></script>
<!-- CSS reference for styling -->
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="outer">
<div class = "container">
<!-- Dark Mode Icon -->
<a>
<i id="dark-mode-btn" class="toggler far fa-moon"></i>
</a>
<h1>Dark Mode</h1>
<br>
<h3>Purely coded with HTML, CSS and JavaScript.</h3>
<br>
<h4>Used Bootstrap library for responsiveness.</h4>
</div>
</div>
<!-- JavaScript Referencing -->
<script src="index.js"></script>
</body>
</html>