0% found this document useful (0 votes)
85 views1 page

HTML Cheat Sheet

This document provides a cheat sheet of common HTML elements organized into categories including basic webpage structure, head tags, headings, block-level elements, inline elements, images, forms, links, lists, music/video embedding, and tables. It lists the opening and closing tags for elements like <html>, <head>, <title>, <p>, <img>, <a>, <ul>, <ol>, <table>, and more.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
85 views1 page

HTML Cheat Sheet

This document provides a cheat sheet of common HTML elements organized into categories including basic webpage structure, head tags, headings, block-level elements, inline elements, images, forms, links, lists, music/video embedding, and tables. It lists the opening and closing tags for elements like <html>, <head>, <title>, <p>, <img>, <a>, <ul>, <ol>, <table>, and more.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 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