-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (32 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css" style="width: 1000px; height: 1000px;">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap" rel="stylesheet">
<title>DarkAlgo</title>
</head>
<body>
<div class="top">
<img src="icon/white/1000.png" class="top-logo">
<p class="top-title">DarkAlgo</p>
<p class="top-text">알고리즘을 어둠과 함께!</p>
<a href="https://github.com/1-EXON/DarkAlgo">
<img src="icon/github.png" class="top-code">
</a>
</div>
<hr class="line">
<div class="main">
<h1>Dark</h1>
<div class="box">
<label class="switch">
<input id="DarkBtn" type="checkbox">
<span class="slider round"></span>
</label>
<p id="isDark">OFF</p>
</div>
</div>
<script src="popup.js"></script>
</body>
</html>