Tag Selector
<!DOCTYPE html>
<html>
<head>
<title>Tag Selector</title>
<style type="text/css">
h1{
color: brown;
}
p {
color: blueviolet
}
label{
color: blue;
}
</style>
</head>
<body>
<h1>Paragraph tag</h1>
<p>This is Para 1</p> <br>
<p>This is Para 2</p> <br>
<p>This is Para 3</p> <br>
<p>This is Para 4</p> <br>
<h1>Label Tag</h1>
<label>This is Label 1 </label> <br><br>
<label>This is Label 2 </label> <br><br>
<label>This is Label 3 </label> <br><br>
<label>This is Label 4 </label> <br><br>
</body>
</html>