Ad Under Header

How to Create an HTML Outline

how to create html outline.
How to Create an HTML Outline

Hello! In this article, we will explain How to Create an HTML Framework. The framework itself has the meaning of a series before making something so it can be interpreted that the HTML framework is the initial series before creating a website. Okay, let's go straight to the discussion Cekidot!


HTML Framework Tags

  1. <!DOCTYPE html>

  2. <html>

  3. <head>

  4. <title>

  5. <body>


Functions of HTML Framework Tags


1. <!DOCTYPE html>

DOCTYPE is a declaration used to identify the type of HTML document used so that the browser can determine how to treat the code.

DOCTYPE itself is useful to tell programmers, what version of HTML is used and also helps programmers to be able to use HTML tags correctly.


2. <html>

This tag is a sign of the beginning of an html document. so before we enter the head, title, and body we have to enter the html tag first.


3. <head>

tag which is the opening of the HTML document. HEAD contains information that describes the HTML document, such as the title of the document, the base URL of a document, the relationship between documents in HTML, and the index of a document.


4. <title>

Although this tag belongs to the HEAD tag section, TITLE is part of the HTML framework because to create a title on an HTML page we need it. TITLE is not part of the text of the document and may not contain other tags. TITLE is usually displayed by the browser in the title bar of the browser window and serves as a label for the window of the browser.


5. <body>

The init tag of this HTML framework is the largest element in an HTML document. This section is not only for entering information or document content but can also give a certain format to a group of text, create tables, forms, and so on.


Example:

<!DOCTYPE html>

<html>

  <head>

    <title>Page Title</title>

  </head>

  <body> Page Contents </body>

</html>


Result:

HTML Framework


Conclusion

So the purpose of the HTML framework is the initial sequence in forming a website page, using HTML tags that are specifically for the HTML framework, namely: <!DOCTYPE html>, <html>, <head>, <title>, <body> and these tags have different functions.

 Hopefully, this article about How to Create an HTML Outline, gives you a little insight. Also, read an article about How to Create an Image Backup in Windows that you may need to know. Thank you.

Top ad
Middle Ad 1
Parallax Ad
Middle Ad 2
Bottom Ad
Link copied to clipboard.