Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.57 KB

HTMLTags.md

File metadata and controls

40 lines (27 loc) · 1.57 KB

HTML Tags

HTML Elements

Block Level Elements

<address> <article> <aside> <blockquote> <canvas> <dd>
<div> <dl> <dt> <fieldset> <figcaption> <figure>
<footer> <form> <h1>-<h6> <header> <hr> <li>
<main> <nav> <noscript> <ol> <p> <pre>
<section> <table> <tfoot> <ul> <video>


Inline Level Elements

<a> <abbr> <acronym> <b> <bdo> <big>
<br> <button> <cite> <code> <dfn> <em>
<i> <img> <input> <kbd> <label> <map>
<object> <output> <q> <samp> <script> <select>
<small> <span> <strong> <sub> <sup> <textarea>
<time> <tt> <var>

+ An inline element does not start on a new line.

+ An inline element only takes up as much width as necessary.

- An inline element cannot contain a block-level element!