HTML Coding Tutorials

Paragraph Basics:

Text Paragraph:

To make a paragraph, use <p> Insert text here </p>. Inside the <p></p>, add whatever text you want.

Paragraph Styles:

Style Basics:

To change the style of the text, styles will allow you to do so. To change the style, add <p style="____;">. If you want to change more of the style, do <p style="___;___;">. Make sure to add a semicolon when separating the styles.

Text Align:

To align the text, type inside the <p: style="text-align: center;"> in order to center your text. This also works with Right and Left.

Margins and Padding:

Margins create space around any borders or other pieces of text. To create a margin, type inside the <p style="margin: __px;">

Padding creates space space inside any defined border. To create padding. type inside the <p style="padding: __px;">

Fonts and Text Coloring

Creating fonts allow you to change the type of font. To do that, you type <p style="font-family: ___;">

Adding color to the text changes the color :O. To change the text color, type <p style="text-color:___;"> (hex codes are recommended. Click this link for hexcodes.)

Headers and Titles

heck