-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (71 loc) · 3.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="DrinkDex is your go-to cocktail companion, allowing you to effortlessly search for any cocktail, providing detailed recipes, ingredients, visuals, and everything you need to become a master mixologist at home.">
<meta name="keywords" content="cocktail, ingredients, instructions, bar, diy cocktail">
<meta name="author" content="Raisa Dorzback">
<title>DrinkDex</title>
<!-- favicon -->
<link rel="icon" type="image/x-icon" href="/images/favicon.png">
<!-- font -->
<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=Lato:wght@400;700&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Raleway:ital@0;1&display=swap" rel="stylesheet">
<!-- external CSS link -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body class="flex-container">
<div class="body">
<header class="flex-container">
<img id="drinkdex" src="/images/DrinkDexLogo.png" alt="DrinkDex" height="180">
<div class="searchBar">
<input type="text" name="" value="">
<button type="button" name="button">Get Cocktail</button>
</div>
<p id="blurb">DrinkDex is your go-to cocktail companion, allowing you to effortlessly search for any cocktail, providing detailed recipes, ingredients, visuals, and everything you need to become a master mixologist at home. Just search for a cocktail to get started!</p>
<p id="error-msg" class="hidden">Aw, we couldn't find that drink in our database ☹. Try another search!</p>
</header>
<main class="flex-container hidden">
<section class="drink-container flex-container">
<h2 class="drink-name">Drink Name</h2>
<img id="drink-img" src="https://placehold.co/250" alt="" height="250">
<div class="arrows">
<i class="fa-solid fa-arrow-left fa-2x"></i>
<i class="fa-solid fa-arrow-right fa-2x"></i>
</div>
</section>
<div class="two-column flex-container">
<section class="ingredients-container flex-container">
<h3>Ingredients</h3>
<ol class="ingredient-list"></ol>
</section>
<section class="instructions-container flex-container">
<h3>Instructions</h3>
<p class="instructions-p"></p>
</section>
</div>
</main>
</div>
<footer>
<div id="socials">
<a target="_blank" href="https://github.com/raisa-d">
<i class="fa-brands fa-github fa-2x"></i>
</a>
<a target="_blank" href="https://twitter.com/rai__bread">
<i class="fa-brands fa-x-twitter fa-2x"></i>
</a>
<a target="_blank" href="https://www.linkedin.com/in/raisa-d/">
<i class="fa-brands fa-linkedin fa-2x"></i>
</a>
</div>
<p id="copyright">
© <a target="_blank" href="https://raisadorzback.netlify.app/">Raisa Dorzback</a> 2024
</p>
</footer>
<script type="text/javascript" src="js/main.js"></script>
<script src="https://kit.fontawesome.com/b06dcc32db.js" crossorigin="anonymous"></script>
</body>
</html>