-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2f.html
57 lines (49 loc) · 1.05 KB
/
2f.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
<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;
}
.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;
}
</style>
<a href="https://www.amazon.ca/ref=nav_logo">
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>