7

Courtland Alves - 5 HTML Tips and Tricks You Need to Know

Embed Size (px)

Citation preview

4 F U N D A M E N TA L H T M L E L E M E N T S

S U B S TA N C E O V E R S T Y L E

HTML is the substance of a website, NOT the

style.

# 1 : TA G S

Tags create the beginning and end of an element.

<tag>Stuff goes here</tag>

# 2 : T E X T

Text will appear between tags.

<td>table data</td><p>paragraph</p><h1>header</h1>

# 3 : I M A G E

Images have a special tag.

<img src=“img_url.gif” />

# 4 : L I N K

A link has a special tag.

<a href=“link.com”>Link Text</a>