-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (34 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
37
38
39
40
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="images/favicon.png" type="image/png">
<!-- Site title -->
<title>HTML Quick Journey</title>
<!-- Styles External -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/swiper-bundle.min.css">
<link rel="stylesheet" href="css/fontawesome.min.css">
<link rel="stylesheet" href="style.css">
<!-- Styles External End -->
</head>
<body id="theme-options" class="theme">
<!-- start journey -->
<main class="pxy-50">
<button type="button" id="theme-switch">
<i class="icon icon--sun fa-solid fa-sun"></i>
<span class="btn-switch"></span>
<i class="icon icon--moon fa-solid fa-moon"></i>
</button>
<h1 class="mt-50 pl-50 heading">Hello, HTML!</h1>
</main>
<!-- end journey -->
<!-- Javascript External -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/swiper-bundle.min.js"></script>
<script src="app.js" defer></script>
<!-- Javascript External End -->
</body>
</html>