Hi my name is joeykoen96, and I'll be your teacher for this “How To...”.
Part 1 - The Basics Here is what you need to make a Tab Page.
1. A web host with:
- Basic File Editer
- *javascript* Sorry
- At least 30 megs of trafic space.
Part 2 - Making a Redirect Button In this section you'll need to make a button for your tab.
Step 1.
- Make a page called tab.html
Now edit the page. Use this code:
<script type="text/javascript">
function tabbutton()
red=prompt("Enter URL put http://[url]","" ) ; window.location=red;
</script>
Then save the page.
Part 3 - New Page + iframe Now many must be asking asking. “What is is iframe?”
iframe - inter net frame. Many sites use this so you leave the page but with out leaving at all. I use this for my site. Iframe is a frame wich uses the tag <iframe>. I will show you if you keep reading.
Step 1.
- Make a new page called tabpage.html
Edit it and use this code:
<html>
<meta name="viewport" content="width=240">
<title>Your title</title>
<head>Your message</head>
<body>
Tab 1<br>
<iframe src="tab.html" width="220" height="220"></iframe><br>
Tab 2<br>
<iframe src="tab.html" width="240" height="240"></iframe><br>
</body>
</html>