About HTML

This page will explain basic knowledge such as simple HTML commands, sentence composition, history of HTML, etc.

Basic html configuration


The picture above is a basic html structure

<!docuttype html> declares that the character of the document is html. After that, the <head> and <body> form the interior. In html coding, all functions consist of <(function name)> and </(function name)>. </>stands for the end of the function.

Most frequently used command


<h1~h6>

<h1~6> is a command used to write a title. The letters are displayed in the computer's default font, with 1 being the largest and 6 being the smallest.

<p>

<p> stands for paragraph and is used to make paragraphs.

<href>

<href> moves the page by specifying the address to be connected through <a> and Tag.

<div>

<div>is the abbreviation for division, which gives attributes to the command.

<a>

<a> is used to hyperlink functions. If you use a hyperlink, you can move the screen to another page.

<img>

<img>is used to define images in html documents.

<script>

<script>is a command used to insert JavaScript into an html document.

<li>

<li>is used to define items in the html list.

After then


Create your own website using the templates you downloaded!