-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
106 lines (75 loc) · 3.33 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
<!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>Flower Basket</title>
<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="images/img-2.jpg" type="image/x-icon">
</head>
<body>
<!-- header section -->
<header>
<a href="index.html" class="logo">Flowers Basket <span>.</span></a>
<input type="checkbox" name="" id="toggler">
<label for="toggler" class="fas fa-bars"></label>
<nav class="navbar">
<a href="index.html">Home</a>
<a href="products.html">Products</a>
<a href="contact.html">Contact</a>
<a href="login.html">Login</a>
<a href="register.html">Register</a>
<a href="basket.html">Cart</a>
</nav>
</header>
<section class="home" id="home">
<div class="content">
<h3>Flowers</h3>
<span>Send Your Condolences</span>
<p>Flowers are the symbol of love. Flowers have great importance in grooming relationships and increasing love. It is said that flowers create the fragrance of love in relationships and bring happiness in the house.</p>
<a href="products.html" class="button">Shop Now</a>
</div>
</section>
<!-- about section -->
<section class="about" id="about">
<h1 class="heading"><span>About </span>Us</h1>
<div class="row">
<div class="img-container">
<img src="/OpenSource-Workshop/images/orderimage.jpg" loop autoplay muted></img>
</div>
<div class="content">
<h3>Order Now</h3>
<p>Flowers are the cheapest and most beautiful way to express your feelings. That's why the tradition of giving a bunch of flowers on meeting any special person or on the arrival of a special guest or welcoming him with flowers has been going on for centuries.</p>
<p>If you give a rose or any such fresh beautiful flower to an angry person, then that person will not be able to remain angry for long.</p>
<p>Birthday Flowers | Anniversary Flowers | Wedding Flowers | Mother's Day Flowers | Father's Day Flowers | Rakhi with Flowers and Cakes | Friendship Day Flowers and Cake | Karwa Chauth Flowers and Cakes </p>
<a href="products.html" class="button">Click Here</a>
</div>
</div>
</section>
<!-- footer section -->
<section class="footer">
<div class="box-container">
<div class="box">
<h3>links</h3>
<a href="#home">home</a>
<a href="#about">about</a>
<a href="products.html">products</a>
<a href="contact.html">contact</a>
</div>
<div class="box">
<h3>extra links</h3>
<a href="#home">my account</a>
<a href="#home">my order</a>
<a href="#home">my favorite</a>
</div>
<div class="box">
<h3>contact info</h3>
<a href="#">+44-456-7890</a>
<a href="#">[email protected] </a>
</div>
</div>
</section>
<!-- footer section -->
</body>
</html>