-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmixer.html
More file actions
60 lines (49 loc) · 1.61 KB
/
mixer.html
File metadata and controls
60 lines (49 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>SOMIX</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles/mixer.css">
<link rel="shortcut icon" type="image/x-icon" href="./assets/logo/favicon.ico?">
</head>
<body>
<div class="banner">
</br></br>
<button class="bannerButton" onclick="pageMain()">
<img src="./assets/logo/logo.png" height=50 width=83>
</button>
</div>
<div class="products">
<h2 class="text">Products</h2>
</div>
</br></br>
<div class="ingredients">
<h2 class="text">Ingredients</h2>
</div>
</br></br></br></br>
<div class="recipe">
<h2 class="text">Recipe</h2>
<div class="recipeitems"></div>
</div>
</br></br>
<div class="recipe-price">
<h3 class="text">Market Value</h3>
<pre class="priceinfo"></pre>
</div>
</br>
<div class="recipe-cost">
<h3 class="text">Cost</h3>
<pre class="costinfo"></pre>
</div>
</br>
<div class="recipe-effects">
<h3 class="text">Effects</h3>
<pre class="effectinfo"></pre>
</div>
</body>
<script src="./scripts/global/variables.js"></script>
<script src="./scripts/mixer/items.js"></script>
<script src="./scripts/mixer/information.js"></script>
<script src="./scripts/mixer/links.js"></script>
</html>