Wednesday, August 15, 2012

HTML Special Characters

Various Scrolling Speeds:

This example demonstrates 3 different scrolling speeds.

Example:

Σ ω ♦ ± Ã

Flying Bee Bat flying really fast

Fish swimming from right to left

Example HTML Frames Code:

To make frames in HTML, you need 3 or more pages. One page is the frameset page, the other pages are for each individual frame. The following code is for a frameset page. Note the code pointing to 2 other pages - one for the left frame, the other for the right frame.

The frameset page:

Frameset page<title> </head> <frameset cols = "25%, *"> <noframes> <body>Your browser doesn't support frames. Therefore, this is the noframe version of the site.</body> </noframes> <frame src ="/html/tutorial/frame_example_left.html" /> <frame src ="/html/tutorial/frame_example_right.html" /> </frameset> </html> <h3> The left frame (frame_example_left.html):</h3> <html> <body style="background-color:green"> <p> This is the left frame (frame_example_left.html).</p> </body> </html> <h3> The right frame (frame_example_right.html):</h3> <html> <body style="background-color:yellow"> <p> This is the right frame (frame_example_right.html).</p> </body> </html>

No comments:

Post a Comment