HTML Cheatsheet

File Naming Conventions

All lowercaseUnderscore or dash
NO uppercase // NO spaces //  NO special characters

Basic Structure

<!DOCTYPE html>
<html></html>
<head></head>
<meta charset=”UTF-8”>
<title></title>
<body></body>

HTML Tags

<h1></h1> to <h6></h6>
<p></p>
<br>
<hr>
<address></address>
<blockquote cite=”http://www.worldwildlife.org“> For 50 years, WWF has been protecting the future of nature.
</blockquote>
<q></q>
<div></div>
<span></span>
<!– Text Here –>

Lists

<ol>
<li>First</li><li>Second</li><li>Third</li></ol>
<ul>
<li>First</li><li>Second</li><li>Third</li></ul>

Special Characters

&#174;
&#8364;
&#8482;
&#169;

Links

<a></a>
What is href?
Text link
Image link
_self
_blank
<a href=”mailto:name@example.com“>Send Email</a>

Leave a Comment

Your email address will not be published. Required fields are marked *