-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.html
46 lines (46 loc) · 1.89 KB
/
cart.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.blink {
animation: blinker 1.5s linear infinite;
color: purple;
font-size: 1.3em;
}
@keyframes blinker {
50% {
opacity: 0;
}
}
</style>
</head>
<body style="background-image:url(college.jpg);">
<table border="2" width="100%">
<tr>
<th style="color: white; background-color: blueviolet;">BOOK NAME</th>
<th style="color: white; background-color: blueviolet;">PRICE</th>
<th style="color: white; background-color: blueviolet;">QUANTITY</th>
<th style="color: white; background-color: blueviolet;">AMOUNT</th>
</tr>
<tr>
<td align="center" style="color: white; background-color: blueviolet;">Java2</td>
<td align="center" style="color: white; background-color: blueviolet;">$35</td>
<td align="center" style="color: white; background-color: blueviolet;">2</td>
<td align="center" style="color: white; background-color: blueviolet;">$70</td>
</tr>
<tr>
<td align="center" style="color: white; background-color: blueviolet;">Python</td>
<td align="center" style="color: white; background-color: blueviolet;">$35</td>
<td align="center" style="color: white; background-color: blueviolet;">2</td>
<td align="center" style="color: white; background-color: blueviolet;">$70</td>
</tr>
<tr>
<td align="center" colspan="3" style="color: white; background-color: blueviolet;">total amount</td>
<td align="center" class="blink" style="color: white; background-color: red;">$140</td>
</tr>
</table>
</body>
</html>