-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselector.html
More file actions
105 lines (83 loc) · 2.18 KB
/
selector.html
File metadata and controls
105 lines (83 loc) · 2.18 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
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Selector</title>
<!-- Internal Css -->
<style>
body{
font-family: Arial;
background-color: aquamarine;
}
*{
margin: 0px;
padding: 0px;
}
.intro{
background-color: beige;
border: 2px solid black;
margin: 10px;
padding: 30px;
}
.container{
width: 200px;
border: 2px solid black;
padding: 30px;
background-color: cadetblue;
transition: all 0.4s ease-in;
}
.container:hover{
width: 400px;
background-color: violet;
}
.highlight{
color: red;
}
p{
color: yellow;
}
.container ul{
color: yellowgreen;
}
.container ul li{
font-size: large;
}
button{
position: relative;
top: 5px;
padding: 3px;
border-radius: 8px;
border: 1px solid red;
color: green;
background-color: black;
transition: all 0.4s ease;
}
button:hover{
border: 1px solid green;
color: red;
background-color: white;
cursor: pointer;
}
</style>
</head>
<body>
<header>
</header>
<main>
<section class="intro">
<div class="container">
<h1 id="title">Welcome</h1>
<p>Normal paragraph</p>
<p class="highlight">Highlighted text</p>
<ul>
<li>Item 1</li>
<li>Item 2</li>
</ul>
<button>Click me</button>
</section>
</main>
<footer>
</footer>
</body>
</html>