<!DOCTYPE html>
<html>
<head>
<style>
p {
border: 1px solid lightgray;
margin: 30px;
}
#pid1 {
color: red;
}
#pid2 {
color: green;
}
#pid3 {
color: blue;
}
</style>
</head>
<body>
<p id="pid1">Text text text</p>
<p id="pid2">Text text text</p>
<p id="pid3">Text text text</p>
</body>
</html>