-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
91 lines (86 loc) · 2.66 KB
/
index.php
File metadata and controls
91 lines (86 loc) · 2.66 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
<!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>Document</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link rel="stylesheet" type="text/css" href="./css/utils.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Alkatra&family=Anton&family=PT+Serif&family=Smokum&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="home.html"><img src="./images/flipkart-01.png" alt="Site Logo" /></a></li>
<li><a href="home.html">Htome</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="search">
<input type="text" name="" id="" placeholder="Search Here">
<button class="btn">Search</button>
</div>
</nav>
</header>
<main>
<div class="container">
<class class="slider">
<img src="./images/architecture-01.jpg" alt="Architecture Image">
</div>
<div class="card">
<h2>Join the cricket fun</h2>
<div class="card-item">
<img src="./images/rain-01.png" alt="Rain Image">
</div>
<div class="lines">
<P>CRICKET BATS</P>
<p>MIN 20% OFF</p>
<P>GRAB NOW</P>
</div>
</div>
<div class="card">
<h2>Join the cricket fun</h2>
<div class="card-item">
<img src="./images/snail.jpg" alt="">
</div>
<div class="lines">
<P>CRICKET BATS</P>
<p>MIN 20% OFF</p>
<P>GRAB NOW</P>
</div>
</div>
<div class="card">
<h2>Join the cricket fun</h2>
<div class="card-item">
<?php for($i=0;$i<10;$i++){ ?>
<img src="https://picsum.photos/640/360?random=<?php echo $i; ?>" alt="">
<?php } ?>
</div>
<div class="lines">
<P>CRICKET BATS</P>
<p>MIN 20% OFF</p>
<P>GRAB NOW</P>
</div>
</div>
<div class="card">
<h2>Join the cricket fun</h2>
<div class="card-item">
<img src="https://source.unsplash.com/640×960/? cricket" alt="">
</div>
<div class="lines">
<P>CRICKET BATS</P>
<p>MIN 20% OFF</p>
<P>GRAB NOW</P>
</div>
</div>
</div>
</main>
<footer class="flex-all-center">
<p >Copyright ©Mycart.com</p>
</footer>
</body>
</html>