HTML INTRODUCTION:
| HTMl | RESULT |
|---|---|
| <html>
<body>
<h1>My Frist Head line</h1>
<p>My frist paragraph<p>
</body>
</html>
| My Frist Head lineMy frist paragraph |
In the previous code example:
- < > means start tag and </ > end tag.
- The text between <html> and </html> descrides the Web page.
- The text between <body> and </body> is the visible page count.
- The text between <h1> and </h1> is displayed as aheading.
- The text between <p> and </p> is displayed as a pragraph.



0 comments:
Post a Comment