HTML BASIC
HTML :
stand for Hyper Text Markup Language
HTML is markup language for Web pages
HTML is building blocks of HTML pages
HTML elements are represented by <> tags
Html is case sensitive .
HTML Elements
An Html have start tag and the end tag and between content.
<p> this is paragraph tag </p>
| Start tag | Element content | End tag |
|---|---|---|
| <h1> | This is a Heading | </h1> |
| <p> | This is paragraph. | </p> |
HTML Attributes
- HTML can have attributes
- Attributes provide more information about the element
HTML BASIC STRUCTURE
<html>
<head>
<title> .....</title>
</head>
<body>
.
.
.
</body>
</html>
this is the main structure of html .
So nice vedio
ReplyDelete