-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathExperiment5.html
More file actions
26 lines (26 loc) · 807 Bytes
/
Experiment5.html
File metadata and controls
26 lines (26 loc) · 807 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Online Shopping</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h2 class="head" style="font-size: 1.8rem">My E-Commerce Store</h2>
<div class="outbox">
<div class="box">
<img src="expimg.jpeg" />
<div class="text">Stylish T-Shirt</div>
<div class="text2">
A comfortable cotton t-shirt perfect for casual wear.
</div>
<div class="cost">
<div class="cost1">Price: ₹799</div>
<div class="cost2">₹1,199</div>
</div>
<div class="cart"><div class="purchase">Add to Cart</div></div>
</div>
</div>
</body>
</html>