-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtabels.html
More file actions
46 lines (36 loc) · 2.14 KB
/
tabels.html
File metadata and controls
46 lines (36 loc) · 2.14 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
<!DOCTYPE html>
<html>
<head>
<title>Html Tables | STOCKS TABEL MARKET </title>
</head>
<body background="skybgjpg.jpg">
<h1 style="font-family: 'Times New Roman', Times, serif; color: palegreen;"><b><img src="stockicon.png" width="50px" height="50px"> AIR Stock MarketPlace ₹</b></h1>
<h6><i>This Project is a Demonstration of HTML Tables</i></h6>
<table style="width: 50%; height: 50%;">
<!--GIVING TABEL BORDER THICKNESS HERE-->
<style>
table, th, td {
border: 1px solid black;
}
</style>
<!--TABEL HEADINGS-->
<tr>
<th style="font-family: 'Courier New', Courier, monospace; color:limegreen;">Company Name</th>
<th style="font-family: 'Courier New', Courier, monospace; color:limegreen;">Stock Purchase Rate</th>
<th style="font-family: 'Courier New', Courier, monospace; color:limegreen;">Stock Sell Rate</th>
</tr>
<!--INDIGO AIRLINES-->
<tr>
<td style="font-family: 'Courier New', Courier, monospace; color: rgb(0, 51, 255); font-size: 120%; text-align: center;"><i>Indigo Airlines 6E</i></td>
<td style="font-family: 'Courier New', Courier, monospace; color: red; font-size: 120%; text-align: center;">1000₹</td>
<td style="font-family: 'Courier New', Courier, monospace; color: red; font-size: 120%; text-align: center;">250₹ | ₹750↓</td>
</tr>
<!--AIR INDIA AIRLINES -->
<tr>
<td style="font-family: 'Courier New', Courier, monospace; color:rgb(255, 68, 0); font-size: 120%; text-align: center;">Air India Airlines</td>
<td style="font-family: 'Courier New', Courier, monospace; color:red; font-size: 120%; text-align: center;">4000₹</td>
<td style="font-family: 'Courier New', Courier, monospace; color:red; font-size: 120%; text-align: center;">10.000₹ | ₹6000↑ </td>
</tr>
</table>
</body>
</html>