Posts

html all tag

HTML basics exercises 1)       Create a webpage that prints your name to the screen.   [ See solution ] <html> <body> <!-- print name to the screen --> John </body> </html> 2)       Create a webpage that prints the numbers 1 - 10 to the screen.   [ See solution <html> <body> <!-- print the numbers 1 to 10 to the screen --> 1 2 3 4 5 6 7 8 9 10 </body> </html> 3)       Create a webpage and set its title to "This is a webpage".   [ See solution <html> <head> <!--set the title of the page--> <title>This is a webpage</title> </head> <body> <p class="note"> The title tag goes in the head section of an HTML document. </p> </body> </html> 4)       Create a webpage that prints the message "When wa...