-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom.html
More file actions
27 lines (24 loc) · 829 Bytes
/
random.html
File metadata and controls
27 lines (24 loc) · 829 Bytes
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
<!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>Food Website - Random Meal Generator</title>
<!-- Link CSS -->
<link rel="stylesheet" href="style.css" />
<!-- Link JS -->
<script src="recepie.js" defer></script>
</head>
<body>
<main id="random-meal-section">
<div class="random-meal-container">
<div class="row text-center">
<h3>Feeling hungry?</h3>
<h5>Get a random meal by clicking below</h5>
<button class="button-primary" id="get_meal">Get Meal 🍔</button>
</div>
<div id="meal"></div>
</main>
</body>
</html>