Create your frist HTML page
Your Frist HTML Page
Let's create your frist HTML page
Note-A HTML page is always started with <html> tag.
<html>
<head>
<title>my frist HTML page </title>
</head>
<body>
<h1>MY FRIST HTML PAGE </h1>
<p>this is my frist html page </p>
</body>
</html>
Let's Discribe all Tags-
<html> - html tag is used at starting of document.
<head> -You can enter title of web page,script used,css style etc. In the head tag.
<title> - title of web page is entered in the title tag.
<body> - Body tag is the body of your web page. All headings, paragraphs, images , links etc. Is written under body tag.
<h1> -Main heading of paragraph is entered under the h1 tag.
<p> -All paragraphs of the web page is entered under p tag.
</title>, </head>, </body>, </html>- They are closing tags of all tag. A closing tag of any tag always started with '</' and closed with '>' like all normal tags.
<head> -You can enter title of web page,script used,css style etc. In the head tag.
<title> - title of web page is entered in the title tag.
<body> - Body tag is the body of your web page. All headings, paragraphs, images , links etc. Is written under body tag.
<h1> -Main heading of paragraph is entered under the h1 tag.
<p> -All paragraphs of the web page is entered under p tag.
</title>, </head>, </body>, </html>- They are closing tags of all tag. A closing tag of any tag always started with '</' and closed with '>' like all normal tags.
....by Ansh swaroop
Comments
Post a Comment