-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttons3.html
48 lines (48 loc) · 1.3 KB
/
buttons3.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
<html>
<head>
<title>
buttons
</title>
<style>
.button{
padding: 15px 20px;
font-size: 20px;
text-align: center;
cursor: pointer;
background-color:#ef8172 ;
color: aliceblue;
box-shadow: 9px 10px black;
}
.button:hover{
background-color: azure;
color: black;
}
body{
background-image: url("C:\Users\hp\Desktop\resorts");
background-repeat: no-repeat;
background-size: cover;
}
</style>
</head>
<body bgcolor="#EFC050">
<ul>
<li><a href="https://www.swiggy.com/"><button class="button">swiggy</button></a>
</li>
<br>
<br>
<li>
<a href="https://www.zomato.com/ncr"><button class="button">zomato</button></a>
</li>
<br>
<br>
<li>
<a href="https://www.ubereats.com/blog/en-IN/"><button class="button">uber eats</button></a>
</li>
<br>
<br>
<li>
<a href="https://www.mcdonalds.com/us/en-us.html"><button class="button">mc donalds</button></a>
</li>
</ul>
</body>
</html>