Tutorial
This is a guide to the basics of HTML

Next page

Layout

1st of all let's start off with the layout of a site: <HTML> <HEAD> <TITLE> </TITLE> </HEAD> <BODY BGCOLOR="#FFFFFF" TEXT="#000000"> </BODY> </HTML></plaintext> This will give you a page with a white background and black text. You must then fill in your site's name inside of the <plaintext><TITLE></TITLE> tags.. it should look like this <TITLE>YOUR SITE NAME</TITLE> Next you must put your site's content inside of the <BODY></BODY> it should look like this <BODY BGCOLOR="#FFFFFF" TEXT="#000000">YOUR SITE'S CONTENT</BODY> That will give you a basic page.</plaintext><p><center><h3>Music</h3></center><p><plaintext>To add music to a page you must use the <EMBED> tag. It should look like this: <EMBED SRC="THE-URL-OF-THE-SONG"> That will do this:</plaintext><P><embed src="//www.oocities.org/tenchimas/multimedia/tenchitv.mid"><p><plaintext> To make the song star automatically and be on a loop you must type <EMBED SRC="THE-URL-OF-THE-SONG" AUTOSTART="TRUE" LOOP="TRUE"> That's all there is to music oh yeah if you want to make the music play on a frames page you must insert the <EMBED> HTML anywhere inside the framset!</plaintext><p><center><h3>Images</h3></center><p> <plaintext>Moving onto images... to place an image on your page you must type in <IMG SRC="THE-IMAGE'S-URL"> See how hard was that.. that will make the image the size it was made as.. to make the image the size you want it should look like this: <IMG SRC="THE-IMAGE'S-URL HEIGHT="???" WIDTH="???"> Where the question marks are you should fill in (in pixels) the height and width you want the image.></plaintext> </body> </html>