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

HTML Quick Reference-2

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)
2 views1 page

HTML Quick Reference-2

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

Tag Purpose Example

<html> Root element <html>...</html>

<head> Metadata <head>...</head>

<body> Visible content <body>Hello</body>

<h1> Heading <h1>Title</h1>

<p> Paragraph <p>Text</p>

<a> Hyperlink <a href='#'>Link</a>

<img> Image <img src='[Link]'>

<div> Block container <div>Box</div>

<span> Inline container <span>Text</span>

<ul> Unordered list <ul><li>A</li></ul>

<table> Table <table>...</table>

<form> Form <form>...</form>

<input> Input <input type='text'>

<button> Button <button>OK</button>

<section> Section <section>...</section>

<article> Article <article>...</article>

<nav> Navigation <nav>...</nav>

<footer> Footer <footer>...</footer>

You might also like