-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuttons2.html
48 lines (48 loc) · 1.3 KB
/
buttons2.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: #DD4124 ;
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="#B565A7">
<ul>
<li><a href="https://www.hyatt.com/"><button class="button">hyatt regency</button></a>
</li>
<br>
<br>
<li>
<a href="https://www.marriott.com/default.mi"><button class="button">mariott</button></a>
</li>
<br>
<br>
<li>
<a href="https://www.tajhotels.com/"><button class="button">Taj group</button></a>
</li>
<br>
<br>
<li>
<a href="https://www.tridentindia.com/"><button class="button">trident group</button></a>
</li>
</ul>
</body>
</html>