-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (94 loc) · 3.96 KB
/
index.html
File metadata and controls
101 lines (94 loc) · 3.96 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Reviews</title>
<link rel="icon" type="image/png" href="./favicon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="./favicon/favicon.svg" />
<link rel="shortcut icon" href="./favicon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Pilky" />
<link rel="manifest" href="./favicon/site.webmanifest" />
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/font-awesome.min.css">
<link rel="stylesheet" href="./img/background.webp">
</head>
<body>
<header class="container border-radius-top">
<div class="row">
<img src="img/icon.png" alt="logo">
<div class="navbar">
<a href="#">Home</a>
<a href="#">Shop</a>
<a href="#">About</a>
<a href="#">Learn</a>
<a href="#">Recipes</a>
</div>
<div class="navbar">
<a class="fa fa-search" href="#"></a>
<a class="fa fa-shopping-cart" href="#"></a>
<a class="fa fa-user" href="#"></a>
</div>
</div>
</header>
<main class="container">
<h1 class="title">Reviews</h1>
<div class="content">
<div class="picture">
<img src="./img/rewier.webp" alt="#">
</div>
<div class="review">
<div class="stars">
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
<i class="fa fa-star" aria-hidden="true"></i>
</div>
<div class="comment">
<p>"Finally found an almond milk that doesn't compromise on taste.The natural sweetness
is a game-changer.
My family can't get enough!"</p>
</div>
<div class="rev">
<div class="name">Sarah W</div>
<div class="job-title">Product Designer</div>
</div>
<div class="buttons">
<button class="btn1 fa fa-long-arrow-left" type="button"></button>
<button class="btn2 fa fa-long-arrow-right" type="button"></button>
</div>
</div>
</div>
</main>
<footer>
<div class="containers border-radius-bot main-collumn">
<div class="collumn-1">
<h2 class="hi">Experience</h2>
<h2 class="hi h">Pilky</h2>
<div class="paragraph">
<p>Immerse yourself in the pure joy of Almond Milk. Crafted with care, designed for simplicity, and
perfect
for your modern lifestyle. Elavete your taste experience - indulge in the essence of almonds,
elavated
to perfection.</p>
</div>
<button class="follow-us">Follow us</button>
</div>
<div class="collumn-2">
<div class="box-1">
<img class="img" src="./img/grass.webp" alt="#">
<img src="./img/milk-packs.webp" alt="#">
<img src="./img/almonds.webp" alt="#">
</div>
<div class="box-1">
<img src="./img/beans.webp" alt="#">
<img src="./img/drinking-milk.webp" alt="#">
<img src="./img/green-leaves.webp" alt="#">
</div>
</div>
</div>
</footer>
</body>
</html>