Css Selector
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
*{
font-size: 10px;
}
body{
background: blue;
}
h1{
color: white;
}
#h2{
color: yellow;
}
.Bg{
/*background: red;*/
background: #22bf60;
background: rgb(72, 8, 156);
}
.textSize{
font-size: 20px;
}
</style>
</head>
<body id="body" class="" >
<h1>Computer</h1>
<h1 id="h2" class="Bg textSize">Computer2</h1>
<h2>Computer</h2>
<h2>Computer</h2>
</body>
</html>
Comments
Post a Comment