To add a title to your page, change your code so that it looks like this:
- <html>
- <head>
- <title>My first web page</title>
- </head>
- <body>
- This is my first web page
- </body>
- </html>
We have added two new elements here, that start with the head tag and the title tag (and see how both of these close).
The head element (that which starts with the <head> opening tag and ends with the </head> tag) appears before the body element (starting with <body> and ending with </body>) and contains information about the page. The information in the head element does not appear in the browser window.
0 comments:
Post a Comment