-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAssignment2.html
More file actions
121 lines (101 loc) · 3.78 KB
/
Assignment2.html
File metadata and controls
121 lines (101 loc) · 3.78 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="keywords" content="best ecommerce,online shoping for home,best online shopping websites,favorite online shopping sites,online shopping websites,signin in the online website">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<meta charset="UTF-8">
<title>HomePage</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
* {
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
}
/* Float four columns side by side */
.column {
float: left;
width: 25%;
padding: 0 10px;
}
/* Remove extra left and right margins, due to padding */
.row {margin: 0 -5px;}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive columns */
@media screen and (max-width: 600px) {
.column {
width: 100%;
display: block;
margin-bottom: -410px;
margin-top: 410px;
}
}
/* Style the counter cards */
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
padding: 16px;
text-align: center;
background-color: #f1f1f1;
}
</style>
</head>
<body>
<div>
<video autoplay muted loop id="myVideo">
<source src="Home - Shop Online.mp4" type="video/mp4">
</video>
</div>
<div class="element">
<div class="w3-bar w3-black">
<a href="Assignment2.html" class="w3-bar-item w3-button w3-mobile">Home</a>
<a href="contact.html" class="w3-bar-item w3-button w3-mobile">Conatct Us</a>
<a href="about.html" class="w3-bar-item w3-button w3-mobile">About Us</a>
<a href="login.html" class="w3-bar-item w3-button w3-mobile">Log In</a>
<a href="registration.html" class="w3-bar-item w3-button w3-mobile">Registration</a>
</div>
</div>
<!--Optional: some overlay text to describe the video-->
<div class="content">
<h1 style="font-size:5vw;">Welcome To Shop Online</h1>
<p><h2 style="font-size:3vw;">Energize Your Decor</h2></p>
<p><h3 style="font-size:2vw;">At Shop Online, we aim to help people discover those special finds to create a home that they truly love. Browse our selection online to see </h3></p>
<p><h3 style="font-size:2vw;">what’s in stock, and find just what you have been looking for.</h3></p>
</div>
<div class="row box">
<div class="column">
<div class="card">
<h3>Beds</h3>
<i class="fas fa-bed" style="font-size:48px;"></i>
</div>
</div>
<div class="column">
<div class="card">
<h3>Couches</h3>
<i class="fas fa-couch" style="font-size:48px;"></i>
</div>
</div>
<div class="column">
<div class="card">
<h3>Chairs</h3>
<i class="fas fa-chair" style="font-size:48px;"></i>
</div>
</div>
<div class="column">
<div class="card">
<h3>Smart TV's</h3>
<i class="fas fa-tv" style="font-size:48px;"></i>
</div>
</div>
</div>
</body>
</html>