Thursday, 5 January 2023

HTML

                             full stack developer home 

HTML:

❤HTML stands for Hyper Text Markup Language.

❤It is a standard markup language for web pages.

❤With html you can create your own website.

The HyperText Markup Language or HTML is the standard markup language for documents designed to be displayed in web browser. It can be assisted by technologies such as CSS and scripting technologies such as javascript.

What is HTML:

  • HTML describes about structure of a Web page.
  • HTML consists of a series of elements in web page.
  • HTML elements shows the browser how to display the content in the website.
  • HTML elements label or shows pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.

A Simple HTML Document


EXPLINATION:
πŸŽ”The <!DOCTYPE html> declaration says that this document is an HTML5 document
πŸŽ”The <html> element is the root element of an HTML page
πŸŽ”The <head> element contains meta information about HTML page
πŸŽ”The <title> element specifies a title for the HTML page that is the browser link.
πŸŽ”The <body> element defines the document's body, and is a container for all the    visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists,    etc.
πŸŽ”The <h1> element defines heading
πŸŽ”The <p> element defines paragraph in html code


Basic HTML page Structure:

<html>

    <head>
          <title>Page Title</title>
    </head>

    <body>
          <h1>this is first heading</h1>
          <h2>this is second heading</h2>
          <p>This is first paragraph</p>
    </body>

</html>.

More topics on html

1. html editor- used to write html code.

No comments:

Post a Comment

HTML editor

 HTML EDITORS : WRITE HTML CODE USING NOTEPAD OR TEXTEDIT: To learn html I recommended a simple text editor like Notepad(pc) or Textedit(for...