-
Notifications
You must be signed in to change notification settings - Fork 0
/
HTML-table-V3.html
133 lines (133 loc) · 3.14 KB
/
HTML-table-V3.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>HTML Table</title>
<style>
/* Basic Styles of Table */
table {
border-collapse: separate;
border-spacing: 0;
color: purple;
font-size: 14px;
line-height: 1.4;
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS",
sans-serif;
}
th,
td {
padding: 10px 15px;
vertical-align: middle;
}
thead {
background: royalblue;
color: whitesmoke;
}
th:first-child {
text-align: left;
}
tbody tr:nth-child(even) {
background: #bfbfe4af;
}
tbody tr:nth-child(odd) {
background: thistle;
}
td {
border-bottom: 1px solid #f14e0d;
border-right: 1px solid #f14e0d;
}
td:first-child {
border-left: 1px solid #f14e0d;
}
/* Text Alignment */
.itm-title {
color: black;
display: block;
}
.itm-qty,
.itm-stock {
text-align: center;
}
.itm-price {
text-align: right;
}
.itm-multiple {
display: block;
color: cornflowerblue;
}
tfoot {
text-align: right;
}
tfoot tr:last-child {
background: grey;
color: whitesmoke;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th scope="col" colspan="2">Items</th>
<th scope="col">Quantity</th>
<th scope="col">Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<strong class="itm-title"> Kill me Now</strong>
By Robert Yohan
</td>
<td class="itm-stock">In Stock</td>
<td class="itm-qty">1</td>
<td class="itm-price">$57</td>
</tr>
<tr>
<td>
<strong class="itm-title"> Learn HTM5 Easily</strong>
By Naruto Uchiha
</td>
<td class="itm-stock">In Stock</td>
<td class="itm-qty">2</td>
<td class="itm-price">
$97 <span class="itm-multiple">$26.47 × 2</span>
</td>
</tr>
<tr>
<td>
<strong class="itm-title"> Heal Me Now</strong>
By Robert Yohan
</td>
<td class="itm-stock">Stock Out</td>
<td class="itm-qty">0</td>
<td class="itm-price">$27</td>
</tr>
<tr>
<td>
<strong class="itm-title">A little Secret</strong>
By James Miah
</td>
<td class="itm-stock">In Stock</td>
<td class="itm-qty">2</td>
<td class="itm-price">$47</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="3">Subtotal</td>
<td>157$</td>
</tr>
<tr>
<td colspan="3">Tax</td>
<td>10$</td>
</tr>
<tr>
<td colspan="3">Grand Total</td>
<td>167$</td>
</tr>
</tfoot>
</table>
</body>
</html>