HTML Basics

HTML (Hypertext markup language) is used to build web pages, which are accessed across internet, it defines the structure/skeleton of webpage content using different tags, ex: <h1>Heading1</h1>.
Each tag represent a structure, which usually has opening and closing tags as above example, though there are few exceptions,which are self closing. ex: <br/>
Below is the sample HTML structure.

<html> 
<- root html tag
<head>
<- head tag has meta,title,style and script etc. tags
<title>Title</title> </head> <body>
<- actual page content goes inside
<h1>Header</h1> <body> </html>

Let's understand some basic HTML tags

Comments

Popular posts from this blog

Java Script Array Methods

Javascript Date Methods