-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (35 loc) · 1.55 KB
/
index.html
File metadata and controls
45 lines (35 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SOMIX</title>
<meta charset="UTF-8">
<meta name="description" content="A project designed for the game schedule one to find the effects and market values for certain mixtures.">
<meta name="keywords" content="Schedule One, Game, Tool, Mixing.">
<meta name="author" content="Irtsa-Dev">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles/index.css">
<link rel="shortcut icon" type="image/x-icon" href="./assets/logo/favicon.ico?">
</head>
<body>
<div class="banner">
</br></br>
<img src="./assets/logo/logo.png" height=325 width=450>
</div>
</br></br></br></br>
<div class="buttons">
<button onclick="pageMix()">
<img src="./assets/icons/mix.png" height=150>
</br></br><label class="button-text">Mixer</label>
</button>
<button onclick="pageReverseMix()">
<img src="./assets/icons/reversemix.png" height=150>
</br></br><label class="button-text">Reverse Mixer</label>
</button>
<button onclick="pageInfo()">
<img src="./assets/icons/info.png" height=150>
</br></br><label class="button-text">Information</label>
</button>
</div>
</body>
<script src="./scripts/index/links.js"></script>
</html>