-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (77 loc) · 3.73 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
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Bean Machine</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./styles.css" >
<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&family=Open+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Lato&family=Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
</head>
<body>
<header class="navigation">
<p class="banner">THE BEAN MACHINE</p>
<nav>
<a href="#about" class="button">About</a>
<a href="#selection" class="button">Selection</a>
<a href ="#" class="login">Login</a>
</nav>
</header>
<main class="main">
<section class="hero">
<div class="hero-left">
<h1>The Bean<br>Machine</h1>
<h3>Coffee Bean Shop</h3>
<div class="search">
<label>
<input class="input" placeholder="Search for a coffee bean" type="text">
</label>
<button class="arrow">
<img alt="arrow" src="/arrow_right.png">
</button>
</div>
</div>
<img src="/illustration.png" class="hero-right" alt="coffee-illustration">
</section>
<section class="border-top about" id="about">
<h3>About</h3>
<p>We are a specialty Coffee Bean Shop based in Barcelona, Spain.</p>
<p>We are passionate about the coffee bean quality so we source our beans from all over the world in order to give you the best out there!</p>
<p>Visit our specialty coffee shop at <span class="text_pink">La Rambla 204</span>, where we serve the best coffee in Barcelona.</p>
</section>
<section class="border-top" id="selection">
<h3>Special Offers</h3>
<div class="special-offers">
<div class="item">
<img src="/coffee_beans.png" alt="coffee" class="coffee-image">
<p class="coffee-name">Costa Rica Single Origin</p>
<button class="buy">BUY</button>
</div>
<div class="item">
<img src="/coffee_beans.png" alt="coffee" class="coffee-image">
<p class="coffee-name">Brazil Medium Roast</p>
<button class="buy">BUY</button>
</div>
<div class="item">
<img src="/coffee_beans.png" alt="coffee" class="coffee-image">
<p class="coffee-name">Colombia Single Origin</p>
<button class="buy">BUY</button>
</div>
</div>
</section>
</main>
<footer class="footer">
<div>
<p>Find us on social media</p>
<i class="fa-brands fa-github"></i>
<i class="fa-brands fa-twitter"></i>
<i class="fa-brands fa-facebook"></i>
</div>
</footer>
</body>
</html>