HTML is the standard markup language to create web pages.
WHAT IS HTML?
- HTML stands for Hyper Text Markup Language
- For Creating Web Pages.
- Consist of series of element.
- Tell the browser how to manipulate the content.
HTML STRUCTURE:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Heading goes here</h1>
<p>Paragraph goes here.</p>
</body>
</html>
<DOCTYPE html> -
Defines the html5 document.
<html> -
Defines root element of html page.
<head> -
All meta,styling and script tag initilliaze tag goes here.
<title> -
Title of your websites.
<body> -
All necessary code goes here.
Comments
Post a Comment