html components code example
Example 1: html how to close tag
<!--Take your starting tag and place it in the end with a / in front of it.-->
<p>Hello World</p>
<a href="#">Hello World</a>
Example 2: html tags
HTML Elements are what make up HTML in general.
This is a list of the main Html element tags.
(There are more not included in this list.)
<!DOCTYPE> Defines the document type
<html> Defines the root of an HTML document </html>
<title> Defines a title for the document </title>
<header> Defines a header for a document or section </header>
<main> Specifies the main content of a document </main>
<footer> Defines a footer for a document or section </footer>
<p> Defines a paragraph </p>
<a> Defines a hyperlink </a>
<b> Defines bold text </b>
<br> Defines a single line break </br>
<button> Defines a clickable button </button>
<div> Defines a section in a document </div>
<footer> Defines a footer for a document or section </footer>
<h1> to <h6> Defines HTML headings </h1> to </h6>
<img> Defines an image </img>
<ol> Defines an ordered list </ol>
<ul> Defines an unordered list </ul>
<li> Defines a list item </li>
<script> Defines a client-side script </script>
<span> Defines a section in a document</span>
<table> Defines a table </table>
<td> Defines a cell in a table</td>
<th> Defines a header cell in a table </th>
<tr> Defines a row in a table </tr>
Example 3: html elements list
The basic elements of an HTML page are:
A text header, denoted using the <h1>, <h2>, <h3>, <h4>, <h5>, <h6> tags.
A paragraph, denoted using the <p> tag.
A horizontal ruler, denoted using the <hr> tag.
A link, denoted using the <a> (anchor) tag.
A list, denoted using the <ul> (unordered list), <ol> (ordered list) and <li> (list element) tags.
An image, denoted using the <img> tag
A divider, denoted using the <div> tag
A text span, denoted using the <span> tag
Example 4: what is html element
Html is a markup kanguage based on XML. It uses nested <objects>
These objects are defined by the standards body W3C
they are usually used in pairs ... <thing> </thing>
A .html file has a bunch of these tags
information to be displayed goes between the start and end tags
<p> This text is now a paragraph</p>
Elements can have unique identifiers used by javascript and CSS
<p id="fruit"> Apple Orange Banana </p>
Elements can be styled by belonging to a class of Elements
<p class="redThings"> This text will be colored red if "redThings" says so
Example 5: what is element in html
HTML Elements are what make up HTML in general
<p> is an element