Please select from the following topics for instruction:
To view your web page in progress, highlight your page and selecting Open With, then choosing a web browser!!
To make a note to someone reading your code (by opening your page in a text program or selecting Source under the View Menu in a web browser), type <!-- &nbso; --HR>. (This is one of those singleton tags.)
To do that you place a beginning tag before the text youíd like to color and an ending tag after the text youíd like to color. To change the color of the word ìSummercoreî to magenta, your code would look like this:
Change the color of the word <font color = ìmagentaî> Summercore </font> to magenta. The beginning tag <font color = ìmagentaî> is what we call a pregnant tag because it contains more than the closing tag </font>. Another thing you can change is the size of your text. Again, these are partner tags that go before and after the word you are trying to change . . . like this: Another thing you can change is the font size by using <font size = 6> bigger word</font> of your text.
Although it can be distracting, it is sometimes nice to have music playing while you are viewing a webpage. To have music playing in the background, first you must find the soundtrack youíd like to use. One easy way to find sounds is to google ìfree wav filesî or ìfree midi filesî. Wavs and midis are not usually original music so you wonít have as many copyright issues. The code should looke like this: <embed src="filename.mid" width=145 height=55 autostart=true loop=true> <noembed> <bgsound src="filename.mid" loop=infinite> </noembed> http://www.delta.ro/beatles/paudi.html
To make a link to another web page, the process is somewhat challenging . . . but You Can Do It! Here we go We are going to create a link to Summercore so that when you click on the word you are immediately redirected to the Summercore homepage. To do that, use the following code: <A HREf = http://www.summercore.com> Summercore </A>