-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchallenge.html
79 lines (77 loc) · 1.48 KB
/
challenge.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
<style>
.Nike{
margin-left: 500px;
margin-top:10px;
font-size:50px;
font-weight:bold;
margin-bottom: 9px;
}
.price{
font-size: 30px;
font-weight:bold;
color: rgb(0,118,0);
}
.cart{
background-color: rgb(255, 216, 20);
height:30px;
width: 90px;
color:black;
font-size: 13px;
font-weight: bold;
border-radius:100px;
margin-right: 9px;
border:none;
transition: opacity 0.2s, background-color 0.2s;
cursor: pointer;
}
.car:hover{
background-color: rgb(245, 200, 10);
}
.cart:active{
opacity:0.5;
}
.buy{
background-color: rgb(255, 164, 28);
height:30px;
width: 90px;
color:black;
font-size: 13px;
font-weight: bold;
transition: background-color 0.2s, opacity 0.2s;
border-radius:100px;
border:none;
cursor: pointer;
}
.buy:hover{
background-color: rgb(255,150,20);
}
.buy:active{
opacity:0.5;
}
p{
font-size: 20px;
font-weight: medium;
}
.jeff{
color: rgb(00,113,133)
}
</style>
<background img src="https://www.leagueoflegends.com/en-us/champions/kindred/"></background>
<a href="https://amazon.com" class="jeff" target="_blank">
Back to Amazon
</a>
<p class= "Nike">
Nike Black Running shoes
</p>
<p class= "price">
$39 - in stock
</p>
<p>
Free delivery tomorrow
</p>
<button class="cart">
Add to cart
</button>
<button class="buy">
Buy now
</button>