-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 881 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>02 - Beverages</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
/>
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="beverages-styles.css" />
<script defer src="beverages-js.js"></script>
</head>
<body class="bg-info">
<main class="bg-light border rounded w-75 mx-auto my-5 p-3">
<h1 class="text-center my-5">Non-Alcoholic Drinks</h1>
<section id="results" class="text-center">
<img
id="loading"
class="mb-5"
src="loader.gif"
alt="gif of a loading element"
width="50px"
/>
</section>
</main>
</body>
</html>