-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (54 loc) · 2.03 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!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">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="Images/">
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script defer src="js/script.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Poiret+One&family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<title>On Da Rox - Cocktail Recipe App</title>
</head>
<body>
<!-- On Da Rox Logo and Button -->
<header>
<img id="ondarox_logo" src="OnDaRox_Logo1.png" alt="On Da Rox Logo" width="260" height="260">
<div>
<script>
var audio = new Audio();
audio.src = "./click.wav"
</script>
<button onclick="audio.play()">Craft me a drink 🍸</button>
</div>
</header> <br>
<!-- Main information about the cocktail -->
<main>
<p id="drink-title"></p>
<div id="drink-image-div">
<p id="drink-image"></p>
</div>
<p id="ingredients-title"></p>
<div id="ingredients-div">
<!-- Try doing a grid with 3 boxes -->
<p id="ingredient1"></p>
<p id="ingredient2"></p>
<p id="ingredient3"></p>
<p id="ingredient4"></p>
<p id="ingredient5"></p>
<p id="ingredient6"></p>
<p id="ingredient7"></p>
<p id="ingredient8"></p>
<p id="ingredient9"></p>
<p id="ingredient10"></p>
</div>
<p id="instructions"></p>
</main>
<!-- Extra information -->
<footer>
</footer>
</body>
</html>