<!DOCTYPE html>
<html>
<head>
<title>CSS ID</title>
<style>
p#line {
color: #FF6633;
margin-left: 20px;
}
div#line {
color: #FFF;
font-size: 20px;
background-color: #FF6633;
}
</style>
</head>
<body>
<p id="line">This is a first paragraph.</p>
<div id="line">This is a first section.</div>
</body>
</html>