-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (67 loc) · 2.21 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 http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Coffee O'Clock</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous">
<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=Bebas+Neue&display=swap" rel="stylesheet">
</head>
<body>
<nav id="nav">
<div class="left-m">
<i class="fas fa-mug-hot"></i>
</div>
<div class="center-m">
<p class="h-links">HOME</p>
<p class="h-links">SHOP</p>
<p class="h-links">ABOUT</p>
<p class="h-links">CONTACT</p>
</div>
<div class="right-m">
<p class="fa fa-bars" id="ham"></p>
</div>
</nav>
<div class="container">
<div class="first">
<p class="small-desc">
WHAT TIME IS IT?
</p>
<p class="big-desc">
COFFEE
</p>
<p class="big-desc">
O'CLOCK
</p>
</div>
<div class="second">
<img src="./images/table.png" alt="coffee o'clock" id="coffee">
</div>
<div class="third">
<div class="hr">
</div>
<div class="box">
<p class="b-heading">
ESPRESSO
</p>
<p class="b-desc">
Espresso is a coffee-brewing method of Italian origin, in which a small amount of nearly boiling water is forced under 9–10 bars of pressure through finely-ground coffee beans. Espresso coffee can be made with a wide variety of coffee beans and roast degrees.
</p>
<img src="./images/cup.png" alt="" id="cup">
<div class="button-div">
<button class="order">ORDER NOW</button>
</div>
</div>
</div>
</div>
<div class="final-bottom">
<i class="fal fa-chevron-square-left" id="left"></i>
<i class="fal fa-chevron-square-right" id="right"></i>
</div>
<script src="app.js"></script>
</body>
</html>