DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>title>
<style>
*{
margin: 0;
padding: 0;
}
div{
color: blue;
}
#unique{
color: yellowgreen;
}
.second{
color: red;
}
.third{
color: yellow;
}
div,h1,p{
background-color: bisque;
color: red;
}
div p{
background-color: red;
color: brown;
}
#unique p{
background-color: red;
}
a:link{
color: yellow;
}
a:visited{
color: red;
}
a:hover{
color: green;
}
a:active{
color: blue;
}
style>
head>
<body>
<div id="unique">
<p>1234p>
div>
<div class="third second">2222div>
<div>
<p>22222p>
div>
<h1>33333h1>
<p>44444p>
<a href="https://www.baidu.com">baidua>
body>
html>