-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.html
33 lines (33 loc) · 912 Bytes
/
settings.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lite | Settings</title>
<link rel="stylesheet" type="text/css" href="/style.css" />
</head>
<body theme="classic">
<header>
<a href="/">Home</a>
<br>
<a href="/files.html">Games</a>
<br>
<a href="chat.html">Chat Section</a>
<br>
<a href="settings.html">Settings</a>
</header>
<div align="center">
<h1>Settings</h1>
<h3>Themes</h3>
<select id="themepicker">
<option value="select">Select Theme</option>
<option value="classic">Classic</option>
<option value="jmwv4">Jordansmathwork V4</option>
<option value="aqua">Aqua</option>
</select>
</div>
</body>
<script src="/js/script.js"></script>
<script src="/js/index.js"></script>
</html>