-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1f copy.html
More file actions
37 lines (36 loc) · 900 Bytes
/
1f copy.html
File metadata and controls
37 lines (36 loc) · 900 Bytes
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
<a style="color:grey" href="https://www.amazon.in/" target="none">link to amazon</a>
<h1>Nike Black Running Shoes</h1>
<p style="color:green"><b>$39 - in Stock</b></p>
<p>Free Delivery Tomorrow.</p>
<button class="cart"> Add To Cart</button>
<button class="buy">Buy Now</button>
<style>
.cart{
background-color:rgb(255,216,20);
height:34px;
width:155px;
border-radius:18px;
cursor:pointer;
border-color:rgb(255,216,20);
border:none;
font-weight:bold;
transition: background-color 0.4;
}
.cart:hover{
background-color:rgb(241, 174, 18);
}
.buy{
background-color:rgba(255, 177, 42, 0.95);
height:34px;
width:155px;
border-radius:18px;
cursor:pointer;
border-color:rgb(255,216,20);
border:none;
font-weight:bold;
transition:background-color 0.4;
}
.buy:active{
background-color:rgba(206, 137, 16, 0.95);
}
</style>