Showing posts with label HTML-Day. Show all posts
Showing posts with label HTML-Day. Show all posts
HTML-Hyper Text Markup Language
Posted On Wednesday, May 20, 2009 at at 12:17 AM by RashedHTML
- To write HTML open a text editor.
- Write
<html>
<head>
<title>
</title>
</head>
<body>
</body>
</html>
- Explanation: HTML language starts with: <html>
- HTML language ends with : </html>
- HTML language contains two part: <head> and <body>
- <head> contains some tag like <title>, <meta> etc.
- <body> is the main part of html language. Web browser shows the <body>….. </body> part.
- / is used to close a tag. Within < > symbol tag and attributes are written.
- Almost every tag needs to end or close but some tags need not to close as <p> or <br>.
- Save the page with .html extension