-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (52 loc) · 1.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flowers Part</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="header">
<div class="header-container">
<div class="Logo">Logo</div>
<div class="menu">
<li class="menu-li">
<a href="#">Home</a>
</li>
<li class="menu-li">
<a href="#">Featured</a>
</li>
<li class="menu-li">
<a href="#">SignUp</a>
</li>
<li class="menu-li">
<a href="#">Contact</a>
</li>
</div>
<div class="shop">
<a href="#">Shop</a>
</div>
</div>
</div>
</header>
<main>
<div class="banner-container">
<div class="banner">
<div class="banner-text">
<h1>Let's make beautiful flowers a part of your life.</h1>
<p>
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters.
</p>
<button class="btn">Shop now</button>
</div>
<div class="bannar-photo">
<img src="https://anirbandasjoy.github.io/reponsive-flowershop/Flower%20Asset/pngwing%2010.png" alt="beautiful Flowers
">
</div>
</div>
</div>
</main>
</body>
</html>