HTML Quick check list


Release date:2024-02-05 Update date:2024-02-23 Editor:admin View counts:62

Label:

HTML Quick check list

HTML Quick check list. You can print it for daily use.

HTML basic documentation

<!DOCTYPE html>
<html>
<head>
<title>document title</title>
</head>
<body>
visible text...
</body>
</html>

Basic tag

<h1>Biggest Title</h1>
<h2> . . . </h2>
<h3> . . . </h3>
<h4> . . . </h4>
<h5> . . . </h5>
<h6>The smallest title</h6>

<p>This is a paragraph.</p>
<br> (wrap)
<hr> (horizontal line)
<!-- This is a comment -->

Text formatting

<b>Bold Text</b>
<code>Computer code</code>
<em>Emphasize Text</em>
<i> Italic text</i>
<kbd>keyboard input</kbd>
<pre>Preformatted Text</pre>
<small>Smaller Text</small>
Important Text

Abbreviation
<address>(contact information)
<bdo>(Text direction)
<blockquote>(a section referenced from another source)
<cite>(Name of job)
<del>(deleted text)
<ins>(inserted text)
<sub>(subscript text)
<sup>(superscript text)

Images

<imgloading="lazy"src="URL"alt="replace text"height="42"width="42">

Style / Block

<style type="text/css">
h1 {color:red;}
p {color:blue;}
</style>
<div>Block level elements in documents</div>
<span>Inline elements in documents</span>

Unordered list

<ul><li>project</li><li>project</li></ul>

Ordered list

<ol><li>Item 1</li><li>Item 2</li></ol>

Definition list

<dl><dt>Item 1</dt><dd>Describe the project 1</dd><dt>Item 2</dt><dd>Describe the project
2</dd></dl>

Tables

<tableborder="1"><tr><th>Table Title</th><th>Table Title</th></tr><tr><td>Table Data</td><td>Table Data</td></tr></table>

Iframe

<iframesrc="demo_iframe.htm"></iframe>

Forms

<formaction="demo_form.php"method="post/get"><inputtype=
"text"name="email"size="40"maxlength="50"><inputtype="password">
<inputtype="checkbox"checked="checked"><inputtype="radio"checked=
"checked"><inputtype="submit"value="Send"><inputtype="reset">
<inputtype="hidden"><select><option>apple</option><optionselected=
"selected">banana</option><option>cherry</option></select><textareaname=
"comment"rows="60"cols="20"></textarea></form>

Entities

&lt;equivalent to<&gt; equivalent to>&#169; equivalent to ©

Powered by TorCMS (https://github.com/bukun/TorCMS).