|
HTML which stands for, Hypertext Markup Language is a markup language used to structure text and multimedia documents and to set up hypertext links between documents, used extensively on the World Wide Web.
So you want to learn iframes? Just about every band site you visit is using one.
I will quickly and briefly show you how to successfully put an iframe on your site. I will also show you how to change the colors of your scrollbar.
Step 1 - Open up your index.html file.
Step 2 - Put this code where you wish to have the frame displayed.
<IFRAME SRC="test.html" WIDTH=350 HEIGHT=20 FRAMEBORDER=0 SCROLLING=auto></IFRAME>
Step 3 - Create a new page called test.html
Step 4 - On your test.html page, create a new table with the width at 330 or somewhere around there.
Step 5 - Still on your test.html page. Paste this code between your <head> tag and your <body> tag.
<STYLE type="text/css">
BODY {scrollbar-3dlight-color:#ffffff;
scrollbar-arrow-color:#000000;
scrollbar-base-color:#ffffff;
scrollbar-track-color:#ffffff;
scrollbar-darkshadow-color:#ffffff;
scrollbar-face-color:#ffffff;
scrollbar-highlight-color:#ffffff;
scrollbar-shadow-color:#ffffff}
</STYLE>
Step 6 - You should have something that looks like this.
|