-
Notifications
You must be signed in to change notification settings - Fork 1
/
Page Layout original.html
153 lines (150 loc) · 5.29 KB
/
Page Layout original.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<html>
<head>
<title>
Flipkart - The E commerce Website
</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<style>
.header{background-color: #2874f0; color: aliceblue; height: 50px; text-align: center;}
.container{}
.footer{background-color: #172337; color: wheat; height: 330px; position: fixed; width: 100%; bottom: 0; padding-top: 70px;}
.box1{margin-top: 10px;}
.text1{width: 100%;}
.menu{height: 30px; width: 50px; margin-top: 10px; background-color: white; color: #2874f0; border-radius: 25px;}
.button{background-color: white; padding: 5px; cursor: pointer; height: 30px; width: 150px; color: blue;}
.nav{ background-color: aliceblue; color: blue; font-style: italic; height: 40px; padding: 5px; text-align: center ;}
</style>
</head>
<body>
<div class="header row">
<div class="col-sm-1">
<button type="menu" class="menu">...</button>
</div>
<div class="col-sm-2">
<b><h2><i class="box1">Flipkart</i></h2></b>
</div>
<div class="col-sm-6 box1">
<input type="text" class="text1" value="Search for your products here">
</div>
<div class="col-sm-3 box1">
<button class="button"><b><i>Login</i></b></button>
</div>
</div>
<div class="row nav">
<div class="col-sm-2 btn btn-success">
<a>Home</a>
</div>
<div class="col-sm-2 btn btn-success">
<a>Phones</a>
</div>
<div class="col-sm-2 btn btn-success">
<a>TVs</a>
</div>
<div class="col-sm-2 btn btn-success">
<a>Appliances</a>
</div>
<div class="col-sm-2 btn btn-success">
<a>Best Buy</a>
</div>
<div class="col-sm-2 btn btn-success">
<a>About us</a>
</div>
</div>
<div class="container">
</div>
<div class="footer">
<div class="row">
<div class="col-sm-3">
<ul>
<li>
Contact us
</li>
<li>
About us
</li>
<li>
Careers
</li>
<li>
Flipkart Stories
</li>
<li>
Press
</li>
</ul>
</div>
<div class="col-sm-3">
<ul>
<li>
Home
</li>
<li>
Phones
</li>
<li>
TVs
</li>
<li>
Appliances
</li>
<li>
Best Buy
</li>
</ul>
</div>
<div class="col-sm-3">
<ul>
<li>
Return Policy
</li>
<li>
Terms of use
</li>
<li>
Security
</li>
<li>
Privacy
</li>
<li>
Sitemap
</li>
</ul>
</div>
<div class="col-sm-3">
<ul>
<li>
Facebook
</li>
<li>
Instagram
</li>
<li>
Youtube
</li>
<li>
Twitter
</li>
<li>
Email
</li>
</ul>
</div>
</div><br><hr><br>
<div class="row">
<div class="col-sm-3">
Sell On Flipkart
</div>
<div class="col-sm-3">
Advertise
</div>
<div class="col-sm-3">
Gift Cards
</div>
<div class="col-sm-3">
Help Center
</div>
</div>
</div>
</body>
</html>