ID Selector
<!DOCTYPE html>
<html>
<head>
<title>Tag Selector</title>
<style type="text/css">
#Para1 {
color: yellow
}
#Para2 {
color: red
}
#lbl1{
color: blue;
}
</style>
</head>
<body>
<h1>Paragraph tag</h1>
<p id="Para1">This is Para 1</p> <br>
<p>This is Para 2</p> <br>
<p id="Para2">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 id="lbl1">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>
OUTPUT: