Skip to main content

Introduction

Introduction | HTML: HTML stands for Hyper Text Markup Language. It is used for creating Web pages. It describes the structure of a Web page and consists of a series of elements.

Here is the introOfHtml.html file:

  1. <html>
  2.   <head>
  3.     <title>Intro of HTML</title>
  4.   </head>
  5.   <body>
  6.     <h1>Win the World with Love</h1>
  7.   </body>
  8. </html>

Web view of Html:



<!-- <html> element is the root element of an HTML.
<body> element is the visible content in Web browser, Content having headings,paragraphs,images, etc.
Few more elements will discus in upcoming videos.
What is an element in HTMl?
Every element having two tags, one is start tag and other one is end tag and
in between of both tags Content exists.
Examaple : <you> content </you>, here you is tag name. -->


Here is the Video: