HTML - Body
Body Tag Basics
The <body> tag of HTML document contains the content that are displayed within the browser window. body tag is used to enclose all html contents that are part of the body.
body links color code
<html> <head> <title>Hello World</title> </head> <body bgcolor="#19378a" text="#ffffff" link="#ffff66" vlink="#66ffff"> Hello World!!!! </body> </html> |
View above example output in a new browser window |
Body Tag Code
View above example output in a new browser window |
Body with background color
View above example output in a new browser window |
Body with no padding
View above example output in a new browser window |