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

HTML - CSS Code - Org Journal

Uploaded by

30angabonziza
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views1 page

HTML - CSS Code - Org Journal

Uploaded by

30angabonziza
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Opening Tag Description Closing Tag

<p> Essentially creates a “paragraph” (Or really any other text </p>
separate from others) separate from the rest of the text

<!DOCTYPE Tells the computer that the document is written in the No closing tag
html> HTML coding language

<html> Marks the start of your html coding </html>

<head> Contains information (sometimes called “metadata”) about </head>


your webpage

<body> It contains all the main content of your webpage </body>

<h#> It enters the text as a heading. There are 6 headings </h#>


(headings 1-6) and the headings get progressively smaller
as the numbers get higher

<ol> Enters the text as a numbered list, should only be used </ol>
before and after the list items

<ul> Enters the text as a bulleted list, should only be used </ul>
before and after the list items

<li> Enters the text as an indented list item, can only be used </li>
inside the tags declaring the list (<ul>,<ol>, etc.)

You might also like