Latest News
Donation Amounts

Hi 😊

We appreciate you and you help us make a difference. We need your help so that we can provide more services, which means we can provide more low-cost online services to the community. The money also helps our Service work tirelessly, even a penny from your end will mean a lot to us. Because of your donation, we were able to do our best for service. We also appreciate that you are a monthly donor. God Bless You!🙏🙏

Read By Categories

Read By Authors

Recent in Self-Help

3/Self-Help/post-list

Facebook

Saturday, January 30, 2021

HTML LEARNING

HTML Overview

HTML

HTML is the standard markup language for creating Web pages.

  • HTML stands for Hyper Text Markup Language
  • HTML describes the structure of Web pages using markup
  • HTML elements are the building blocks of HTML pages
  • HTML elements are represented by tags
  • HTML tags label pieces of content such as "heading", "paragraph", "table", and so on
  • Browsers do not display the HTML tags, but use them to render the content of the page.

Originally, HTML was developed with the intent of defining the structure of documents like headings, paragraphs, lists, and so forth to facilitate the sharing of scientific information between researchers.

Now, HTML is being widely used to format web pages with the help of different tags available in HTML language.

Basic HTML Document

HTML - Overview

Basic HTML Document

In its simplest form, following is an example of an HTML document

<!DOCTYPE html>
<html>
<head>
<title>Document Title</title>
</head>

<body>
<h1>Heading</h1>
<p>Content goes here.....</p>
</body>

</html>

HTML Document Output

This is document title

This is a heading

Document content goes here.....

Example Explained

`
  • The declaration defines this document to be HTML5
  • The </html>element is the root element of an HTML page
  • The <head> element contains meta information about the document
  • The <title>element specifies a title for the document
  • The <body> element contains the visible page content
  • The <h1> element defines a large heading
  • The <p> element defines a paragraph

  • Blogger Comments
  • Facebook Comments

0 Reviews:

Post a Comment

If you have any doubts, Let me know, Please!

Item Reviewed: HTML LEARNING Rating: 5 Reviewed By: Suriya