-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2f.html
72 lines (61 loc) · 1.24 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!-- Challenging exercise-->
<style>
a{
color:rgb(0,113,133);
cursor:pointer;
}
.nike{
font-weight:bold;
font-size:25px;
color:black;
cursor:pointer;
}
.stock{
color:rgb(0,118,0);
font-weight:bold;
cursor:pointer;
}
.Cart{
background-color:rgb(255,216,20);
border:none;
color:black;
height:34px;
width:120px;
border-radius:18px;
font-size:15px;
cursor:pointer;
transition:background-color 0.15s opacity 0.15s;
}
.Buy{
background-color:rgb(255,164,28);
border:none;
color:black;
height:34px;
width:120px;
border-radius:18px;
font-size:15px;
cursor:pointer;
transition:background-color 0.15s opacity 0.15s;
}
a:hover{
color:rgb(127, 67, 38);
}
.cart:hover{
background-color:rgb(224, 178, 0);
}
.cart:active{
opacity:0.5;
}
.Buy:hover{
background-color: rgb(222, 111, 0);
}
.Buy:active{
opacity:0.5;
}
</style>
<a href="https://www.amazon.in/" target="_blank">Back to Amazon</a>
<p class="nike">Nike Black Running Shoes</p>
<p class="stock">$39- in stock</p>
<p class="free">Free delivery tomorrow.</p>
<button class="Cart"> Add to Cart</button>
<button class="Buy"> Buy Now</button>