-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
38 lines (33 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random Recipes Generator (JavaScript API Project)</title>
<!-- Fonts -->
<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=Gabarito&family=Titillium+Web&display=swap" rel="stylesheet">
<!-- Font Awesome Icons-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Styles -->
<link rel="stylesheet" href="https://necolas.github.io/normalize.css/8.0.1/normalize.css">
<link rel="stylesheet" href="styles.css" />
</head>
<body class="flex-column">
<header class="main-header">
<h1 id="title">Random Recipes Generator</h1>
<p id="description">Data provided by TheMealDB API</p>
</header>
<article class="btn-container flex-row">
<button id="random-meal">Get Recipe ✨</button>
</article>
<section class="meal-container"></section>
<section class="source-code flex-row">
<a href="https://github.com/ThuHtooSan/random-recipes-generator" target="_blank">
<i class="fa-brands fa-github-alt"></i>
</a>
</section>
<script src="./app.js"></script>
</body>
</html>