-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
50 lines (46 loc) · 1.38 KB
/
index.php
File metadata and controls
50 lines (46 loc) · 1.38 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home Shop</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles/applicationStyles.css">
<style type="text/css">
<style type="text/css">
</style>
</head>
<body>
<div class="header">
<div class="title">
<h2>Welcome to Home Shop</h2>
<p>Various needs one destination</p>
</div>
<div class="titleImage">
<img src="images/headingImage.jpg">
</div>
<div >
<a class="active" href="index.php">Home</a>
<a href="products.php">Products</a>
<a href="feedback.php">Contact Us</a>
</div>
</div>
<div class="row">
<div class="side">
<h1>Limited Time Offer</h1>
<p>
<b>10% off on all the products.</b>
<a href="products.php" style="display: block;">Click here to buy now!!!</a>
</p>
</div>
<div class="main">
<h2>TOP 4 SELLING PRODUCTS</h2>
<div style="display: flex;flex-direction: row;">
<div class="fakeimg" style="height:200px;"><img src="product-images/tv.jpg"></div>
<div class="fakeimg" style="height:200px;"><img src="product-images/ipad.jpg"></div>
<div class="fakeimg" style="height:200px;"><img src="product-images/watch.jpg"></div>
<div class="fakeimg" style="height:200px;"><img src="product-images/laptop.jpg"></div>
</div>
</div>
</div>
</body>
</html>