-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdecorMarriage.html
59 lines (56 loc) · 1.96 KB
/
decorMarriage.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
<!DOCTYPE html>
<html>
<head>
<title>Decorators</title>
<link rel="stylesheet" type="text/css" href="css/decorMarriage.css"></link>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Arapey&display=swap" rel="stylesheet">
<style>
body{
font-family: 'Arapey', serif;
}
</style>
</head>
<body>
<table>
<th><u>NAME</u></th>
<th><u>MEET US AT:</u></th>
<th></th>
<th><u>CONTACT US:</u></th>
<tr>
<div id="name">
<td><p>Sujata D.</p>
<p>S.J Decorators</p></td>
<td><p id="address">M G road,Delhi-400703</p></td>
<td><img id="photo" src="https://images.unsplash.com/photo-1607346704652-de050550a758?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=751&q=80" style="width:30%"></td>
<td><p id="contact">7986436879</p>
<p ><u> ₹50,000.00 </u></p>
<p><button>Add to Cart</button></p></td>
</div>
</tr>
<tr>
<div id="name">
<td><p>Seema D.</p>
<p>pixel Decorators</p></td>
<td><p id="address">Ram Maruti road,Chennai-600703</p></td>
<td><img id="photo" src="https://images.unsplash.com/photo-1608308594956-7fb307fc31d5?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=750&q=80" style="width:30%"></td>
<td><p id="contact">8864658767</p>
<p ><u> ₹50,000.00 </u></p>
<p><button>Add to Cart</button></p></td>
</div>
</tr>
<tr>
<div id="name">
<td><p>Mahesh M.</p>
<p>M.J Decorators</p></td>
<td><p id="address">Anne Besant road,Mumbai-400703/ SG road ,Banglore-800909</p></td>
<td><img id="photo" src="https://images.unsplash.com/photo-1607346705691-1c7792ac656d?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=750&q=80" style="width:30%"></td>
<td><p id="contact">7789897675</p>
<p ><u> ₹50,000.00 </u></p>
<p><button>Add to Cart</button></p></td>
</div>
</tr>
</table>
</body>
</html>