-
Notifications
You must be signed in to change notification settings - Fork 0
/
second.html
94 lines (77 loc) · 1.95 KB
/
second.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Price list</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<style media="screen">
th{
font-size:25px;
height:50px;
background-color: #4CAF50;
color: white;
}
td{
padding:5px;
padding-left:10px;
}
table,th,td{
font-size:25px;
border:2px solid black;
border-collapse:collapse;
}
table{
width:70%;
margin-top:50px;
}
tr:nth-child(even){background-color: #f2f2f2}
</style>
</head>
<body>
<div class="Display-1" style="text-align:center; background-color:" >
<h1>If you want to buy any of my artwork here is the list of prices</h1>
</div>
<table>
<tr style="margin-left:5px;">
<th>Sr.No </th>
<th >Artname</th>
<th>Price in Rs</th>
</tr>
<tr>
<td>1</td>
<td>Harry Potter</td>
<td>200</td>
</tr>
<tr>
<td>2</td>
<td>Narendra Modi</td>
<td>199</td>
</tr>
<tr>
<td>3</td>
<td>Leonardo Di Caprio</td>
<td>201</td>
</tr>
<tr>
<td>4</td>
<td>Cristiano Ronaldo</td>
<td>270</td>
</tr>
<tr>
<td>5</td>
<td>Sherlock Holmes</td>
<td>320</td>
</tr>
<tr>
<td>6</td>
<td>The joker</td>
<td>400</td>
</tr>
</table>
<br>
<br>
<div class="container-fluid" style="text-align:center">
<h1>If you are interested in buying please contact at : [email protected]</h1>
</div>
</body>
</html>