You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
558 B

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width"/>
<style>
.header {
color: red;
}
div.header {
color: blue;
}
h1,
h2 {
color: green;
}
</style>
</head>
<body>
<p class="header">text-1</p>
<div>text-2</div>
<div class="header">text-3</div>
<div>
<h1>text-4</h1>
</div>
<div class="header">
<h1>text-5</h1>
</div>
<h2>text-6</h2>
</body>
</html>