HTML
1) HTML stands hyper text markup language.
2) HTML define the various component of a web
page.
3) HTML
describes the structure of Web pages using markup.
4) HTML elements are represented by tags.
5) HTML tags label pieces of content, such as:
-"heading",
"paragraph", "table".
EXAMPLE:
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<h1>My First
Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
<p>My first paragraph.</p>
</body>
</html>
1) <HTML> Root element of the html
2) <head> meta information about document.
3) <title> show the browsing title about the
document.
4) <body> visible page content.
5) <h1> heading of the page.
6) <p1> paragraph write about the page
No comments:
Post a Comment