-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (48 loc) · 1.84 KB
/
index.html
File metadata and controls
56 lines (48 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css' rel='stylesheet'
integrity='sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD' crossorigin='anonymous'>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@mdi/font@latest/css/materialdesignicons.min.css">
<link rel="stylesheet" href="style.css">
<title>Secret Code</title>
</head>
<body data-bs-theme="dark">
<nav>sup <i class="mdi mdi-cow-off"></i></nav>
<main class="container">
<section class="row ">
<div id="user-input" class="bg-black text-warning p-2 rounded">
user input goes here
</div>
<!-- To run a function, use a "event listener" -->
<button onclick="clickPizza()" class="col-md-3 btn btn-secondary">
🍕
</button>
<button onclick="clickBento()" class="col-md-3 btn btn-secondary">
🍱
</button>
<button onclick="clickFoodButton('🍿')" class="col-md-3 btn btn-secondary">
🍿
</button>
<button onclick="clickFoodButton('🫔')" class="col-md-3 btn btn-secondary">
🫔
</button>
<button onclick="clickFoodButton('🍳')" class="col-md-3 btn btn-secondary">
🍳
</button>
<button onclick="clickFoodButton('🍢')" class="col-md-3 btn btn-secondary">
🍢
</button>
<button onclick="checkCode()" class="col-md-6 btn btn-primary">
Enter Code 💷
</button>
<img id="secret-img" class="d-none img-fluid" src="jake.gif" alt="">
</section>
</main>
<!-- NOTE script tags should load at the bottom of the body -->
<!-- <script src="example.js"></script> -->
<script src="app.js"></script>
</body>
</html>