A whole paragraph of text goes here!
2. You may modify the formatting of each paragraph by inserting CSS into your HTML code. For example: 1.This whole paragraph of text will be centered, green and in 14px.
1. You can add as many or as few of the following CSS modules as you’d like to thetag demonstrated above 1. font-size:##px; modifies the size of the text; px can be replaced with pt, em, % or any length unit (cm, in, etc). In lieu of numbers, you can also write font-size:large; and replace large with xx-small, x-small, small, medium (default for most browsers), large, x-large, xx-large, larger, smaller. 2. font-family:Arial; modifies the font type of the text; can be replaced with the name of any font, but if the user’s computer does not have the font downloaded, then it will revert to the browser’s default. If the font name has spaces in it, e.g., Times New Roman, it should be placed within quotation marks. 3. color:######; or color:red; changes the color of the text. For a list of acceptable web color names, click here. 4. font-weight:bold; determines whether the text is bolded or normal; bold can be replaced with normal. 5. font-style: italic; determines whether the text is italicized or not; italic can be replaced with normal. 6. text-decoration:underline; adds an underline to the text; underline can also be replaced with overline for a line over the text, line-through for a line through the text, and none. 7. text-transform:uppercase; transforms the casing of the text; uppercase (all caps) can be replaced with capitalize (first letter of each word is capitalized), lowercase (all lowercase letters), or none. 8. text-indent:5em; will indent the first line of the paragraph by the specified amount; any unit acceptable for font-size can be used for text-indent.