forked from priyankarp1927/HTML5-CSS3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·102 lines (100 loc) · 5.45 KB
/
index.html
File metadata and controls
executable file
·102 lines (100 loc) · 5.45 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
102
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>My First Website</title>
<link rel="stylesheet" type="text/css" href="css/reset.css"> <!-- reset for browser -->
<link rel="stylesheet" type="text/css" href="css/960_12_col.css"> <!-- grid css -->
<link rel="stylesheet" type="text/css" href="css/style.css"><!-- my css -->
<link href="http://fonts.googleapis.com/css?family=Caesar Dressing" rel='stylesheet'><!-- google font -->
<link href="http://fonts.googleapis.com/css?family=Dancing Script" rel='stylesheet'><!-- google font -->
<link href="http://fonts.googleapis.com/css?family=Chewy" rel='stylesheet'><!--google font -->
<link href="http://fonts.googleapis.com/css?family=Sofia" rel='stylesheet'><!-- google font -->
<link href="http://fonts.googleapis.com/css?family=Pacifico" rel='stylesheet'> <!--google font-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"><!-- font awesome icon -->
</head>
<!-- body starts -->
<body class="body">
<div class=" pr container_12">
<!-- header starts -->
<header class=" head" >
<div class="grid_4">
<img class="logo" src="img/logo.jpg"/>
</div>
<div class="grid_4">
<h1>Rose Flower Shop</h1><br><br><br><br>
<p class="name">Fresh & Pleasant</p>
</div>
<div class="grid_4">
<img class="online" src="img/online.png"/>
<a class="onover" href="#">Online Shopping</a>
</div>
<br>
<nav class=" grid_12">
<ul>
<li><a href="#">Birthday</a></li>
<li><a href="#">Valentine's Day</a></li>
<li><a href="#">Occation</a></li>
<li><a href="#">Product</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Site Services </a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>
</header>
<!-- header ends -->
</div>
<br><br><br><br><br><br><br><br>
<section class=" pr container_12"><img class="main" src="img/m1.jpg" alt=""></section><!-- main images placed here -->
<div class=" pr container_12">
<h2>Variety of Flower</h2>
<section class="grid_4 detail">
<img class="three" src="img/three1.jpg" alt=""><!-- thrid row first image-->
<p class="par">Celebrate any occasion with fresh flowers from FTD. Here, you will find only the highest quality flower arrangements and floral bouquets - perfect for birthdays, anniversaries, or any holiday throughout the year.
</p>
</section>
<section class="grid_4 detail">
<img class="three" src="img/three2.jpg" alt=""><!-- thrid row second image -->
<p class="par">You can get flowers delivered same day from an artisan FTD florist. Order by 2 P.M. in your recipient's time zone for same day flower delivery, Monday through Friday.FTD believes having flowers delivered never needs to be a hassle, no matter where your recipient is.
</p>
</section>
<section class="grid_4 detail"><!-- thrid row third image -->
<img class="three" src="img/three3.jpg" alt="">
<p class="par">
Our fantastic selection of gifts from premier brands goes beyond the world of flower delivery, including tempting chocolates, gourmet snacks, and fresh fruits. You can also explore our indulgent spa baskets, gorgeous jewelry, luxurious crystal vases, and much more.
</p>
</section>
</div>
<div class="pr pad container_12">
<section >
<article class="grid_6">
<img class ="six" src="img/six.jpg"><!-- fourth row image -->
</article>
<article class="grid_6"><!-- description -->
<section ><p class="par3">Send flowers from FTD,and feel confident that making your recipient happy.You can trust that the quality of our flowers will be without peer,ordered a bouquet of beautiful roses, vibrant tulip.</p></section>
<section ><p class="par3" >FTD believes having flowers delivered never needs to be a hassle, no matter where your recipient is. We make it easy for you to check product availability,you can order beautiful flowers using online !</p></section>
<section><p class="par3">If you’re looking to send a plant gift, look no further.The perfect plant is waiting for you in FTD's Plant Shop. Rose plants are ideal for romance; green plants provide enduring beauty.</p> </section>
</article>
</section>
</div>
<!-- footer start -->
<footer class="pr container_12">
<center class="center">
<p class="flower">are you like flower..?? then add to your cart!! <br>New account</p><br>
<form action="#" method="get">
<p><i class="fa fa-plus fa-1x" aria-hidden="true"></i> <input style="width:300px"type="text" placeholder="Flower's name"></p><br>
<p><i style="margin-top:-30px"class="fa fa-comment" aria-hidden="true"></i><textarea rows="3" cols="50" placeholder="suggestion.."></textarea></p>
<p><input type="submit"></p>
</form>
<i class="fa fa-twitter" aria-hidden="true"></i>
<i class="fa fa-facebook" aria-hidden="true"></i>
<i class="fa fa-youtube" aria-hidden="true"></i>
<i class="fa fa-instagram" aria-hidden="true"></i>
</center>
</footer>
<!-- footer ends -->
<!-- body ends-->
</body>
</html>