top of page
HTML C0DES
HTML coding is one of the easiest codes you will come across. It is mainly used for stuff such as your web browser. Again, it can be used to make different things like websites and such.
​
Here are a few HTML codes and what they do,
HTML C0DES AND WHAT THEY DO
<!DOCTYPE> Defines the document type
<html> Defines an HTML document
<head> Contains metadata/information for the document
<title> Defines a title for the document
<body> Defines the document's body
<h1> to <h6> Defines HTML headings
<p> Defines a paragraph
<br> Inserts a single line break
<hr> Defines a thematic change in the content
<!--...--> Defines a comment

bottom of page


