This is a draft cheat sheet. It is a work in progress and is not finished yet.
Block Elements
<nav></nav> |
<h#></h#> |
<section></section> |
<p></p> |
<article></article> |
<span></span> |
<aside></aside> |
<q></q> |
<footer></footer> |
<div></div> |
Lists
<ol></ul> |
<li></li> |
<ul></ul> |
<dl></dl> |
<dt></dt> |
|
<dd></dd> |
Tables
<table>/ |
Table |
<tr>/ |
New Row |
<th>/ |
Table Heading |
<td>/ |
Table Data |
style="border-collapse |
Combine Borders, Gapless |
|
|
Text Markup
<strong>/ |
Bold Text |
<em>/ |
Italicize |
<mark>/ |
Highlight Text |
<del>/ |
Linethrough |
<ins>/ |
Underline |
<sub>/ and <sup>/ |
Sub/Superscript |
<q>/ |
Mark as a Quote |
<blockquote>/ |
Large Quote, Usually Indented |
<address>/ |
Contact Information |
<cite>/ |
Defines a Title |
Meta Tags
<meta name="" content=""> |
Syntax |
name="desctiption" |
Description |
name="keywords" |
Key Words |
name="author" |
Author |
http-equiv="refresh" |
Refresh every content seconds |
|
|
Links
<link href="Something.css" rel="stylesheet" type="text/css" |
CSS Stylesheet |
<a href="">/ |
Link from content |
<img src="" alt=""> |
Image |
<a href="#text>/ |
Jump to "text" |
<iframe src="">/ |
Display webpage within a webpage |
target:iframe_a |
Target iframe Named "iframe_a" |
target:blank_ |
Opens in New Tab |
Script/Code
<script>/ |
Declares a Script |
Forms
<form>/ |
Open/Close the Form |
<input type="" name=""> |
Defines an Input |
type="text" |
Small Text Bot |
type="radio" value="" |
Button Select Menu |
type="submit" value="Submit" |
Submits form |
|