Tuesday, January 10, 2017

HTML Basics

Tags

HTML-Hyper Text Markup Language

Basically HTML is used for webpage designing.It has many attributes,tags etc. which helps in designing of web pages

Below Given is a basic HTML Structure
<head>
</head>
<body>
<h1>My First Webpage</h1>
<p>HTML</p>
</body>



headUsed for describing head of a web page
bodyUsed for describing body of a web page
h1Used for heading
(1 to 6 there are headings and these are in descending size)
pUsed for paragraph

You can create your own webpage using any editor say Notepad 
Just write the code in Notepad and save it using .html or .htm extension
Then open the file in any web browser to see what is output

Output: