This is a draft cheat sheet. It is a work in progress and is not finished yet.
HTML Document Outline
<!DOCTYPE> |
Version of (X)HTML |
<html> |
HTML document |
<head> |
Page information |
<body> |
Page contents |
HTML Page Information
<meta> |
Meta data |
<title> |
Title |
<link> |
Relevant resource |
<script> |
Script resource |
<style> |
Style sheet |
<link rel="stylesheet" href="styles.css">
<script src="myscripts.js"></script>
HTML Semantic Elements
<header> |
<footer> |
<main> |
<article> |
<section> |
<aside> |
<nav> |
HTML Core Attributes
1) class and id can be used to style elements
2) id can be used to retrieve input value
HTML Document Structure
<h1> to <h6> |
Headings |
<div> |
Page section |
<span> |
Inline section |
<p> |
Paragraph |
<br> |
Line break |
<hr> |
Horizontal line |
HTML Text
<em> |
Emphasis |
<blockquote> |
Long quotation |
<q> |
Short quotation |
<abbr> |
Abbreviation |
<pre> |
Pre-formatted text |
<dfn> |
Definition |
<code> |
Code |
<cite> |
Citation |
<del> |
Deleted text |
<ins> |
Inserted text |
<sub> |
subscript |
<sup> |
superscript |
<strong> |
bold |
<i> |
italic |
|
|
HTML Tables
<table> |
Table |
<thead> |
Table header |
<tbody> |
Table body |
<colgroup> |
Column group |
<col> |
Column |
<tr> |
Table row |
<th> |
Header cell |
<td> |
Table cell |
HTML Lists
<ol> |
Ordered list |
<ul> |
Unordered list |
<li> |
List item |
HTML Images
<img> |
Image |
<img src="icon.jpg" alt="myicon" width="500" height="600"> |
|
|
HTML Links
<a href="url">Click Here</a> |
Link to external or internal pages of a website |
<a href="mailto:abc@gmail.com">Click Here</a> |
Link to an email address |
<a href="name">Click Here</a> |
Link to a document element |
<a href="#name">Click Here</a> |
Link to specific div element |
HTML Forms
<form> |
Form |
<label> |
Input label |
<input> |
Form input |
<select> |
Drop down |
<option> |
Drop down option |
<outgroup> |
Group of option |
<textarea> |
Large text input |
<button> |
Button |
HTML Events
Window Events |
onload |
onunload |
Form Events |
onchange |
onselect |
onfocus |
Keyboard Events |
onkeydown |
onkeyup |
onkeypress |
Mouse Events |
onclick |
onmouseout |
ondblclick |
onmouseup |
onmousemove |
onmousemove |
|