WrestleXpress
  • May 23, 2012, 08:22:45 AM
  • Welcome, Guest
Please login or register.

Login with username, password and session length
Advanced search  
Read opinions on WWE Royal Rumble (Jan 29th) or watch it yourself in WXtra

Author Topic: I need some things  (Read 560 times) Share

0 Members and 1 Guest are viewing this topic.

Da Man

I need some things
« on: March 23, 2003, 06:40:17 PM »

if any of you guys kno any places for html codes and stuff can u tell me here

and if anyone could help me with a website with frames it would be greatly appreciated

thanks

i just need the frames to be set up, and i mean like everything set up, like everything but the info in them besides the frames

just someone help me :cry:  
Like this post (0 likes)   Logged

The Headliner

  • Offline Offline
  • @2Tweet2BeSour
  • Posts: 34,676
    • View Profile
    • @2Tweet2BeSour
I need some things
« Reply #1 on: March 24, 2003, 03:43:25 PM »

To use frames on a site, you need to make your index.htm file a frameset page like this:

Code: [Select]
<HTML>
<HEAD>
<TITLE>
  Da Man's Excellent Site with Frames
</TITLE>
</HEAD>
<FRAMESET ROWS=60,* FRAMEBORDER=yes>
<FRAME NAME=top SRC="top.html" SCROLLING=no>
<FRAMESET COLS=15%,85% FRAMEBORDER=yes>
  <FRAME NAME=navigation SRC="navigation.htm">
  <FRAME NAME=main SRC="welcome.htm">
</FRAMESET>
</FRAMESET>
</HTML>

Just play around with those attributes until you get your frames to look how you want. You can have as many frames or framesets as you like, just by adding them in the correct nested position.

The "SRC" page is just the page that will initially load in that frame - when someone clicks on a link, the new page will (by default) load in that frame. If you want to specify which frame a linked page should load in (for example, if your navigation menu is in a small frame on the left), you need to state a target frame in the link like this:

Code: [Select]
<a href="newpage.htm" target="main">This link loads newpage.htm in the frame you labelled 'main'</a>
These are just the basics, there is more to learn about frames but this should be enough to get you started. The best way to find good tutorial sites is by browsing the Google Directory.
Like this post (0 likes)   Logged

Da Man

I need some things
« Reply #2 on: March 24, 2003, 06:02:03 PM »

u make it should alot easier than it is


can someone make me a site with frames, if u like make a site with frames i'll just enter in all the info

i feel, i feel so stupid
Like this post (0 likes)   Logged

Kraul

  • Offline Offline
  • Posts: 10,058
    • View Profile
I need some things
« Reply #3 on: March 24, 2003, 08:30:08 PM »

Mr. Man, can I call Da? Okay. Da, I have a site for all things HTML. It'll teach you all about HTML. It's at:

www.webmonkey.com

I just learned about this site last night from TechTV. Check it out, you might learn a few things. ;)  
Like this post (0 likes)   Logged

Da Man

I need some things
« Reply #4 on: March 24, 2003, 10:33:06 PM »

i've heard of that site but I just dont understand how to put the frames together and stuff!

its just hard!

so can someone like make me a site with frames, like a-dubb, u made one for nwowolfpac for a gfx site, can u do something like that for me but not like a gfx site like a regular site
Like this post (0 likes)   Logged

A-Dubb

  • Offline Offline
  • Posts: 1,479
    • View Profile
I need some things
« Reply #5 on: March 25, 2003, 12:43:23 AM »

He already had his on there. I just fixed and formatted and linked. All you reall have to do is resize the box and format onto the page. It's not that hard.
Like this post (0 likes)   Logged
OG WM'er

The Headliner

  • Offline Offline
  • @2Tweet2BeSour
  • Posts: 34,676
    • View Profile
    • @2Tweet2BeSour
I need some things
« Reply #6 on: March 25, 2003, 02:41:25 PM »

Da Man, create that page I showed you, just by copying the quoted code into Notepad and saving it as "index.htm" - and also make sure you have some random pages named "top.htm", "navigation.htm" and "main.htm". For now, you only need to write one word on those pages just to tell them apart.

When you then open the index.htm page, you'll see how it all comes together. Don't expect to understand it just by reading someone's explanation, you have to actively do it yourself to see how it works. When you've made these pages and viewed them, you'll be able to play around with the frameset attributes, like making each frame bigger or smaller by changing the numbers in their tags, until you understand exactly how you can modify these things.

Honestly, it really is simple, but you'll have to do the practical work instead of relying on understanding the theory without hands-on experience. Give it a try.
Like this post (0 likes)   Logged