Craeate ID Selector
<html>
<head>
<title>Create CSS ID Selector</title>
<style type="text/css">
#First {
color: red;
font-size: 150%;
text-align:left;
font-family: book antiqua;
Text-decoration: underline;
}
#Second {
color: blue;
font-size: 150%;
text-align:left;
font-family: book antiqua;
Text-decoration: underline;
}
</style>
</head>
<body>
<div id="First">Used First ID Selector</div>
<div id="Second">Used Second ID Selector</div>
</body>
</html>