-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (106 loc) · 4.39 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Coffee Company Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<div class="logo_nav">
<div class="logo">
<p><span>R</span> <span>P</span> <span>S</span><i></i></p>
<img src="image-icon/coffee-icon-svgrepo-com.svg" alt="">
</div>
<nav>
<ul>
<li> <a href="###">Home</a> </li>
<li> <a href="###">About</a> </li>
<li> <a href="###">Contact</a> </li>
<li> <a href="###">FAQ</a> </li>
</ul>
</nav>
</div>
<div class="description_image">
<div class="description_btn">
<h1>R P S CoFfeE</h1>
<p>
Our coffee powder is handcrafted in Kerala using traditional methods. We start with the <br> finest
Arabica beans, which are roasted to perfection and then ground to a fine powder.<br> The result is a
smooth, flavorful cup of coffee that is bursting with the richness of Kerala's <br>unique terroir
</p>
<button class="btn">sing up</button>
</div>
<div class="image">
<img src="image-icon/company-img.png" alt="">
</div>
</div>
</header>
<main>
<section class="images_informations">
<div class="information">
<h1>Our coffe specialities</h1>
</div>
<div class="panels">
<div class="panel">
<div class="images">
<img src="image-icon/bean-mug.jpg">
</div>
<div class="text">
<p>Coffee and a view, the <br> perfect way to relax.</p>
</div>
</div>
<div class="panel">
<div class="images">
<img src="image-icon/cofee-machine.jpg">
</div>
<div class="text">
<p>The perfect cup of coffee,<br> made with care.</p>
</div>
</div>
<div class="panel">
<div class="images">
<img src="image-icon/coffe-round_machine.jpg">
</div>
<div class="text">
<p>Coffee and conversation, <br>the perfect way to start<br> your day.</p>
</div>
</div>
<div class="panel">
<div class="images">
<img src="image-icon/coffee-machine-2.jpg">
</div>
<div class="text">
<p>The finest coffee beans, <br>roasted to perfection.</p>
</div>
</div>
</div>
</section>
<section class="section_quote">
<div class="quotes">
<p>
Savor the richness of life, one cup of our exquisite coffee at a time. Let the aroma envelop your
senses, awakening the extraordinary within you
</p>
</div>
</section>
<section class="action_btn">
<div class="action_btn_container">
<div class="action_desc">
<p class="main_text">IT's TIME to TAKe your action !</p>
<p>Experience the perfect cup of coffee. Sing up and Order now to elevate your mornings with our
exceptional blends </p>
</div>
<div class="button">
<button class="btn"> sing up</button>
</div>
</div>
</section>
</main>
<footer>
<p>Copyright © 2023 Coffee Company</p>
</footer>
</div>
</body>
</html>