HTML Introduction

                       Tim Berners-lee 

INTRODECTION OF WEB 

  • WHAT IS WEB(WWW) 
  • The world wide web was originally designed in 1991 by Tim Berners -lee in Switzerland 
  • WWW means interlinking of web pages. 
  • Webpage are written in HTML(Hyper Text Markup Language) 
  • WWW is also called internet or the web. All the webpage, videos, images are accessed via a web Browser on the internet with use of URL (Uniform Resource locator) 



STRUCTURE OF HTML

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

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>



OUTPUT

This is a Heading

This is a paragraph.

0 Comments