-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path3f.html
82 lines (71 loc) · 1.66 KB
/
3f.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
<style>
.nike {
font-weight: bold;
font-size: x-large;
}
.instock {
color: rgb(0,118,0);
}
.amazon-button1 {
background-color: rgb(255, 216, 20);
color: black;
padding-left: 20px;
padding-right: 20px;
padding-top: 5px;
padding-bottom: 5px;
border: none;
border-radius: 15px;
font-weight: 550;
margin-right: 12px;
margin-bottom: 12px;
cursor: pointer;
transition: background-color 0.15s, opacity 0.15s;
}
.amazon-button1:hover {
background-color: rgb(228, 194, 20);
}
.amazon-button1:active {
opacity: 0.6;
}
.amazon-button2 {
background-color: rgb(255, 164, 28);
color: black;
padding-left: 20px;
padding-right: 20px;
padding-top: 5px;
padding-bottom: 5px;
border: none;
border-radius: 15px;
font-weight: 550;
margin-right: 12px;
margin-bottom: 12px;
cursor: pointer;
transition: background-color 0.15s, opacity 0.15s;
}
.amazon-button2:hover {
background-color: rgb(220, 141, 24);
}
.amazon-button2:active {
opacity: 0.6;
}
.link {
color: blue;
}
.link:hover {
color: red;
}
</style>
<a href="https://www.amazon.ca/ref=nav_logo" class="link">
Back to Amazon
</a>
<p class="nike">
Nike Black Running Shoes
</p>
<p class="instock">
$39 - in stock.
</p>
<p>
Free delivery tomorrow.
</p>
<button class="amazon-button1">Add to Cart</button>
<button class="amazon-button2">Buy now</button>