-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (66 loc) · 2.46 KB
/
index.html
File metadata and controls
67 lines (66 loc) · 2.46 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Solution Database</title>
<link rel="stylesheet" href="style.css">
<script src="scripts/theme.js" defer></script>
<script src="scripts/index.js" defer></script>
</head>
<body>
<div class="theme-switch-wrapper">
<label class="theme-switch" for="checkbox">
<input type="checkbox" id="checkbox" />
<div class="slider round"></div>
</label>
</div>
<div class="container">
<h1 class="site-title">The Solution Database</h1>
<div class="tile-container">
<a href="category.html?category=general" class="tile">
<div class="tile-content">
<img src="images/main/general.svg" alt="General">
<span>General</span>
</div>
</a>
<a href="category.html?category=windows" class="tile">
<div class="tile-content">
<img src="images/main/windows.svg" alt="Windows">
<span>Windows</span>
</div>
</a>
<a href="category.html?category=linux" class="tile">
<div class="tile-content">
<img src="images/main/linux.svg" alt="Linux">
<span>Linux</span>
</div>
</a>
<a href="category.html?category=macos" class="tile">
<div class="tile-content">
<img src="images/main/macos.svg" alt="MacOS">
<span>MacOS</span>
</div>
</a>
<a href="category.html?category=ios" class="tile">
<div class="tile-content">
<img src="images/main/iphone.svg" alt="iPhone">
<span>iOS</span>
</div>
</a>
<a href="category.html?category=android" class="tile">
<div class="tile-content">
<img src="images/main/android.svg" alt="Android">
<span>Android</span>
</div>
</a>
<a href="category.html?category=about" class="tile">
<div class="tile-content">
<img src="images/main/about.svg" alt="About">
<span>About</span>
</div>
</a>
</div>
</div>
</body>
</html>