<html lang="en">
<head>
<meta charset="UTF-8">
<link href="aaa.css" rel="stylesheet">
</head>
<body>
<section></section>
<section></section>
</body>
</html>
section {
width: 600px;
height: 200px;
}
section:nth-of-type(1){
background-color: red;
}
section:nth-of-type(2){
background-color: blue;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.