-
Notifications
You must be signed in to change notification settings - Fork 0
/
2b.html
86 lines (72 loc) · 1.28 KB
/
2b.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
<!DOCTYPE html>
<style>
a{
color: rgba(0, 113, 133, 0.823);
font-weight: bold;
font-size: 15px;
}
a:hover{
color: rgb(199, 81, 31);
transition: color 0.17s;
}
p{
color: rgb(0, 118, 0);
font-weight: bolder;
font-size: medium;
}
.add-button{
font-size: small;
font-weight: bold;
color: black;
background-color: rgb(255, 216, 20);
cursor: pointer;
border: none;
border-radius: 15px;
width: 118px;
height: 30px;
margin-right: 8px;
}
.add-button:hover{
background-color: rgb(247, 202, 0);
}
.add-button:active{
opacity: 0.5;
}
.buy-button{
font-size: small;
font-weight: bold;
color: black;
background-color: rgb(255, 164, 28);
cursor: pointer;
border: none;
border-radius: 15px;
width: 118px;
height: 30px;
}
.buy-button:hover{
background-color: rgb(250, 137, 0);
}
.buy-button:active{
opacity: 0.5;
}
</style>
<html>
<a href="https://amazon.com">Back to Amazon</a>
<body>
<h1>
Nike Black Running Shoes
</h1>
<p>
$39 - in stock.
</p>
<h5>
Free delivery tomorrow.
</h5>
<button class="add-button">
Add to Cart
</button>
<button class="buy-button">
Buy now
</button>
</body>
</html>