-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
36 lines (34 loc) · 1.08 KB
/
settings.html
File metadata and controls
36 lines (34 loc) · 1.08 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>About - MatchPal</title>
<link rel="icon" type="image/x-icon" href="./images/favicon.ico">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Title Section-->
<h1>Settings</h1>
<!--Page Body-->
<!--Customize Menu Colors
<form id="color-form">
<label for="primary-color">Primary Color:</label>
<input type="color" id="primary-color" value="#FFF500">
<br>
<label for="secondary-color">Secondary Color:</label>
<input type="color" id="secondary-color" value="#1E1E2A">
<br>
<button id="apply-colors" class="menu-button">Apply colors</button>
<br />
</form>
-->
<!--Return to Menu-->
<a href="index.html">
<div id="return-to-menu" class="menu-button">Return to menu</div>
</a>
<div id="bottom-spacer"></div>
<script src="index.js"></script>
</body>
</html>