<html lang="en">
<head>
<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>Document</title>
<style>
* {
color: black;
}
li {
color: tomato;
}
#special {
color: pink;
}
.Black {
width: 100px;
color: yellow;
background-color: yellow;
height: 100px;
}
button:hover {
color:red;
background-color: teal;
}
</style>
</head>
<body>
<h1 id="special">Hello</h1>
<ol>
<li id="special">First</li>
<li>second</li>
</ol>
<button>Button 1</button>
<button>Button 2</button>
<div class="Black"></div>
<div class="Green"></div>
</body>
</html>