-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApplyCSS.html
More file actions
25 lines (13 loc) · 796 Bytes
/
ApplyCSS.html
File metadata and controls
25 lines (13 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<title>Adding CSS to an HTML Document</title>
<meta charset="utf-8">
</head>
<style>
p {color: red}
</style>
<body>
<p style="color: green;">You can add specific "styles" to things like font via the style option listed</p>
<p>Another option to help alleviate the pain of having to do this for each paragraph, is to use the command listed in the header of this page:</p>
<p>Note: This entire document will show the color red <em>EXCLUDING</em> the paragraph listed at the top. This is due to us going in and manually setting that paragraphs color.</p>