Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.

Get Started Now!

What is HTML

HTML stands for Hyper Text Markup Language · HTML is the standard markup language for creating Web pages and Web Applications · HTML describes the structure of a Web page ·

The first version of HTML was written by Tim Berners-Lee in 1993. Since then, there have been many different versions of HTML. The most widely used version throughout the 2000’s was HTML 4.01, which became an official standard in December 1999. Currently another popular version is HTML5. 

Hyper Text: Hypertext is text which contains links to other texts. Whenever you click on a link which brings you to a new webpage, you have clicked on a hypertext. Hyper Text is a way to link two or more web pages with each other.

Markup Language: A text, which is surrounding an angular bracket is called markup language.

Webpages: Webpage is nothing but a page which contain some information such as text, images, forms, tables, etc.

Websites: Collection of webpages are known as websites.

Example of HTML Documents:

<!DOCTYPE html>
<html>
<head>
<title>Web Page Title</title>
</head>
<body>

<h1>My 1st Heading</h1>
<p>My 1st paragraph.</p>

</body>
</html>

Example Explained:

  • <!DOCTYPE html> It’s defines document types (Like HTML5 document).
  • <html> It is the root element of an HTML page.
  • <head> Head elements contains meta information about the HTML page
  • <title> Title element specifies a title for the HTML page.
  • <body> 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.
  • <h1> Heading element defines a large heading.
  • <p>  Paragraph element defines a paragraph.

Related Posts

How to Run an HTML Website Alongside a Laravel Project on the Same Server

Running a Laravel application is common for dynamic web platforms, dashboards, and APIs. However, many businesses and developers also want to run a simple HTML website on Read More

Read More

What is HTTP and What is top use cases of HTTP ?

What is HTTP ? HTTP, or Hypertext Transfer Protocol, is an application layer protocol used primarily with the World Wide Web in the client-server model. It was Read More

Read More

Understanding SEO: Exploring Its Principles and Varied Types

Introduction to SEO SEO stands for Search Engine Optimization. It’s the process of improving your website to increase its visibility in search engine results pages (SERPs). In Read More

Read More

Creating Simple HTML Form

Job Application Form Using HTML Output:

Read More

HTML Basic Structure

HTML Documents: All HTML documents must start with a document type declaration: <!DOCTYPE html>. The HTML document begins with <html> and ends with </html>. The visible part of the HTML document Read More

Read More

HTML Headings:

HTML heading describe what type of heading given in html pages. There are six type of html headings using in html Syntax: <h1> This is heading 1 Read More

Read More
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x