You are on page 1of 1

HTMLCheatSheet

BasicHTMLWebpage
<!DOCTYPEhtmlPUBLIC"""">
<html>
<head>
</head>
<body>
</body>
</html>

HTMLHeadTags
<title></title>
<metaname=""content=""/>
<linkrel="shortcuticon"
type="image/xicon"href=""/>
<linkrel="stylesheet"type="text/css"
href=""/>
<scripttype="text/javascript">
</script>
<styletype="text/css"></style>

HTMLComment
<!Comment>

Headings
<h1></h1>
<h2></h2>
<h3></h3>
<h4></h4>
<h5></h5>
<h6></h6>

BlockLevelHTML
Elements
<p></p>
<hr/>
<div></div>
<script></script>
<noscript></noscript>
<address></address>
<blockquote></blockquote>
<pre></pre>
<del></del>
<ins></ins>

InlineHTMLElements
<br/>
<span></span>
<b></b>
<strong></strong>
<i></i>
<em></em>
<big></big>
<small></small>
<tt></tt>
<bdodir="ltr"></bdo>
<bdodir="rtl"></bdo>
<cite></cite>
<del></del>
<ins></ins>
<q></q>
<sub></sub>
<sup></sup>
<abbrtitle=""></abbr>
<acronymtitle=""></acronym>

HTMLImage

HTMLForms

<imgsrc=""/>

<formaction=""method="">
<inputtype="text"name=""/>
<inputtype="password"/>
<inputtype="hidden"/>
<inputtype="submit"/>
<inputtype="reset"value=""/>
<inputtype="checkbox"/>
<inputtype="radio"/>
<textareaname=""></textarea>
<selectname="">
<option></option>
</select>
<inputtype="file"name=""/>
</form>

HTMLLink
<ahref=""></a>

HTMLLists
UnorderedList
<ul>
<li>WhatisHTML?</li>
</ul>
OrderedList
<ol>
<li></li>
</ol>
DefinitionList
<dl>
<dt>Term</dt>
<dd>Description</dd>
</dl>

MusicCode
<embedsrc=""/>

VideoCode
<embedsrc=""/>

HTMLTable
<table><tr>
<th></th>
<th></th>
</tr><tr>
<td></td>
<td></td>
</tr></table>

You might also like