/* this CSS comment is to note that this is our first CS 318 external style sheet! by: Sharon Tuttle last modified: 2-13-13 */ p { font-family: "Trebuchet MS"; color: red; } /* multiple elements can be given the same set of properties */ h1, h2, h3, h4, h5, h6 { color: green; } /* any element can be given this class */ .right { text-align: right; } /* only a p element can be given this class */ p.center { text-align: center; } /* example of an attribute selector */ input[type="text"] { background-color: blue; }