-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathindex.html
118 lines (112 loc) · 4.13 KB
/
index.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
<html>
<head>
<title>Aishwarya Singh</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Zenh87qX5JnK2Jl0vWa8Ck2rdkQ2Bzep5IDxbcnCeuOxjzrPF/et3URy9Bv1WTRi" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<script>
function myFunction() {
alert("Added");
}
</script>
</head>
<body>
<header>
<h1><b>Product Catalogue</b></h1>
<hr>
</header>
<div class="ever">
</div>
<div class="marq">
<marquee behavior="scroll" direction="left" scrollamount="12">SALE!!!! SALE!!!! SALE!!!!</marquee>
</div>
<table border="1" align="center" cellspacing="0" cellpadding="10">
<tr align="center">
<td>
<img src="./imgs/1.jpg" width="250" height="225" class="my-img"><br>
Product A<br>
Price Rs. 299<br>
<button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
<td>
<img src="./imgs/2.png" width="250" height="225" class="my-img"><br>
Product B<br>
Price Rs. 299<br><button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
<td>
<img src="./imgs/3.jpg" width="250" height="225" class="my-img"><br>
Product C<br>
Price Rs. 299<br><button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
<td>
<img src="./imgs/4.jpg" width="250" height="225" class="my-img"><br>
Product D<br>
Price Rs. 299<br><button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
<td>
<img src="./imgs/5.jpg" width="250" height="225" class="my-img"><br>
Product E<br>
Price Rs. 299<br><button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
</tr>
<tr align="center">
<td>
<img src="./imgs/3.jpg" width="250" height="225" class="my-img"><br>
Product F<br>
Price Rs. 299<br>
<button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
<td>
<img src="./imgs/6.jpg" width="250" height="225" class="my-img"><br>
Product G<br>
Price Rs. 299<br><button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
<td>
<img src="./imgs/4.jpg" width="250" height="225" class="my-img"><br>
Product H<br>
Price Rs. 299<br><button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
<td>
<img src="./imgs/2.png" width="250" height="225" class="my-img"><br>
Product I<br>
Price Rs. 299<br><button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
<td>
<img src="./imgs/5.jpg" width="250" height="225" class="my-img"><br>
Product J<br>
Price Rs. 299<br><button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
</tr>
<tr align="center">
<td>
<img src="./imgs/3.jpg" width="250" height="225" class="my-img"><br>
Product K<br>
Price Rs. 299<br>
<button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
<td>
<img src="./imgs/4.jpg" width="250" height="225" class="my-img"><br>
Product L<br>
Price Rs. 299<br><button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
<td>
<img src="./imgs/6.jpg" width="250" height="225" class="my-img"><br>
Product M<br>
Price Rs. 299<br><button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
<td>
<img src="./imgs/5.jpg" width="250" height="225" class="my-img"><br>
Product N<br>
Price Rs. 299<br><button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
<td>
<img src="./imgs/1.jpg" width="250" height="225" class="my-img"><br>
Product O<br>
Price Rs. 299<br><button type="button" class="btn btn-primary my-btn" onclick="myFunction()">Add to Cart</button>
</td>
</tr>
</table>
</body>
</html>