-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 2.01 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
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html theme="light">
<head>
<meta charset="utf-8" />
<title>SCSS Test</title>
<meta name="author" content="steviss" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="dist/css/main.min.css" />
<script src="dist/js/main.min.js" defer></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<meta name="theme-color" content="#3c1900" />
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js" defer></script>
<![endif]-->
</head>
<body>
<header class="header">
<h1>Color Switcher jQuery Test</h1>
<div class="current-mode">Light Mode</div>
<button class="switch-mode">Switch modes</button>
</header>
<main class="wrapper">
<div class="contents-container">
<header>
<h2>Content</h2>
</header>
<div class="contents"></div>
</div>
<div class="doggos-container">
<header>
<h2>Images</h2>
</header>
<div class="doggos"></div>
</div>
<div class="colors-container">
<header>
<h2>Colors</h2>
</header>
<div class="colors"></div>
</div>
</main>
</body>
</html>