-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTest.html
More file actions
95 lines (87 loc) · 2.13 KB
/
Test.html
File metadata and controls
95 lines (87 loc) · 2.13 KB
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/x-icon" href="download.jpeg" />
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>text books</title>
<p>
<a class="navbaricon" href="index.html"
><button class="navbaricons" type="button">Home</button></a
>
<a class="navbaricon" href="index.html"
><button class="navbaricons" type="button">back</button></a
>
</p>
<style>
/* Style The Dropdown Button */
.dropbtn {
background-color: #FFAACC;
color: grey;
padding: 16px;
font-size: 20px;
cursor: pointer;
}
/* position the dropdown content */
.dropdown {
position: relative;
display: inline-block;
}
/* Dropdown Content hidden by Default */
.dropdown-content {
display: none;
position: absolute;
background-color: #CCCCCC;
min-width: 160px;
z-index: 1;
}
/* Links inside the dropdown */
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
/* Change color of dropdown links on hover */
.dropdown-content a:hover {
background-color: #11f111;
}
/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
display: block;
}
.mathsn{
cursor: pointer;
width: 96px;
height: 28px;
border-radius: 50px;
border-style: hidden;
margin-bottom: 20px;
margin-top: 40px;
border-radius: 9px;
}
.mathsn1 {
border-radius: 9px;
width: 99px;
height: 38px;
transition: 0.3s;
}
.mathsn1:hover {
border: 2px solid blue;
width: 99px;
height: 38px;
</style>
</head>
<body>
<div class="dropdown">
<button class="dropbtn">Dropdown</button>
<div class="dropdown-content">
<a href="English.zip">English</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
<button class="mathsn1">Test<button class="mathsn1:hover">Test hover</button></button>
</html>