Introduction To HTML What is HTML ?


 What is HTML ?

HTML Stands for HyperText Markup Language, where

  • HyperText is a term that refers to a link between two web pages
  • Text between tags that form the structure is referred to as Markup Language.
The Hypertext Markup Language (HTML) is a programming language that is used to create web pages.It uses elements to decide the appearance of a web and how content should be displayed.It creates or defines or defines the structure of our Web oage as a result of its creation or definition.Make sure your document is saved with the.html extension.

HTML,s Advantages

  • The learning curve is extremely straightforward (easy to modify).
  • Putting together effective presentations.
  • We can add references by adding links.
  • Documents can be viewed on a variety of systems, including Mac, Windows, Linux, and others.
  • By including films, pictures, and audios, you may make it more appealing
  • Case- insensitive phrasing

HTML Skeleton

<!DOCTYPE html>

<html>

<head>

<title></title>

</head>

<body>

</html>

HTML Basic

<!DOCTYPE html>

Instruction to the browser about the HTML version.

<html>

  • Root element which acts as a container to hold all the cpde
  • The browser should know that this is an HTML document
  • Permitted content: One head tag followed by one body tag
<nead>

  • Everything written here will never be displayed in the browser
  • It contains general information about the document
  • Title, definitions of CSS and script sheets
  • Metadate(information about the document)
<body>

  • Everything written here will be displayed in the browser
  • Contains text, images, links that can be achieved through tage
  • Examples
  • O<p> This is our first paragraph.</p>
  • O<a href=''http://www.google.com">Go To Google</a>
  • O<img src="photo.jpg">
Features of HTML:

  • It is easy to learn and easy to use.
  • It is platform-independent.
  • Images, videos, and audio can be added to a web page.
  • Hypertext can be added to text.
  • It is a markup language.
Why learn HTML?

  • It is a simple markup language. Its implementation is easy.
  • It is used to create a website.
  • Helps in developing fundamentals about web programming.
  • Boost professional career.

Comments