Chapter 4
(This section will help you understand basics of HTML, language used to create Websites)
(d) Make the Body :
- Whenever we put any content between the opening tag and closing tag, the entire bit is called an element.
element = <opening tag> + content + </closing tag>
- The content you type in between <body> .. </body> tags is what will be visible on the actual web page.
- Always remember, the <body> . . </body> tags goes inside the <html> . . </html> tags but not inside the <head> . . </head> tags.
<html>
<head> . . </head>
<body> . . </body>
</html>
0 comments:
Post a Comment