HomeHTMLHTML Introduction - HyperText Markup Language

HTML Introduction – HyperText Markup Language

HTML Introduction

HTML stands for HyperText Markup Language. it is the standard markup language that is used to create or design Web pages. “.html” extension, is used to save the HTML document.

  • Hypertext – it means to define the way webpages are linked together.
  • Markup Language – to markup the text with the help of predefined Markup tags.

An HTML document contains a series of elements to work to tell the browser how to show the content to users on the screen. It can be assisted by technologies such as Cascading Style Sheets (CSS) and scripting languages such as JavaScript.

Have a look on a HTML Basic Example

<!DOCTYPE html>
<html>
<head>
<title> PrepareExams </title>
</head>
<body>

<h1>Learn HTML Language with us </h1>
<p> This is my first HTML Tutorial with PrepareExams</p>

</body>
</html>

Example Explanation Here: 

<!DOCTYPE html>Defines document is an HTML5 document
<html>Defines element is the root element
<head>Defines meta information of a page
<title>Defines a title for the HTML page
<body>Contains the visible page content to Users
<h1>Large Heading
<p>Paragraph

Learn more about HTML: Click Here

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Latest News