-
Notifications
You must be signed in to change notification settings - Fork 0
/
sunayan.html
64 lines (61 loc) · 1.93 KB
/
sunayan.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
<!DOCTYPE html>
<html>
<head>
<style>
body{
text-decoration:solid;
margin: 0px;
padding: 0px;
background-color: silver;
}
h1{
font-family: 'Courier New', Courier, monospace;
}
.hover-button {
background-color: #007bff; /* Set default background color */
color: #fff; /* Set default text color */
border: none; /* Remove default button border */
padding: 0px 0px; /* Add padding to the button */
font-size: 16px; /* Set font size */
cursor: pointer; /* Change cursor to pointer on hover */
/* Define transition for smooth hover effect */
transition: background-color 0.3s ease, color 0.3s ease;
}
/* Define hover effect */
.hover-button:hover {
background-color: #0056b3; /* Change background color on hover */
}
</style>
</head>
<body>
<h1 style="text-align: center; background-color: black; color: blanchedalmond;"> Practice on the topic table</h1>
<table border="2" bgcolor="green" align="center">
<caption style="background-color: darkred;">table of one</caption>
<tr>
<th>1</th>
<th>1</th>
<th>1</th>
<th>1</th>
<th>1</th>
<th>1</th>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
<tr>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
<td>1</td>
</tr>
</table>
<center><button class="hover-button">click this buttion!!</a></button></center>
</body>
</html>