Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

hum de dum, newbie help

Status
Not open for further replies.

zanza

Programmer
Feb 18, 2002
89
US
keeping to character, my first web page is planned out to be huge. and itll be fun as soon as i can get the template for the pages to work. ^_^

well anyway, here is my source... when i load it, it displays two of the left frames and the remaining space is empty

<!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0 Transitional//EN&quot;>

<html>

<head>
<title>Kyojou No Mastatsu Suru</title>
<meta name=&quot;description&quot; content=&quot;A site on some interesting topics. That is, if you like anything about computers, music, japan or thought provoking things. Have fun :p&quot;>
<meta name=&quot;keywords&quot; content=&quot;computer, computers, hacking, linux, anime, eva, evangelion, kenshin, rurouni kenshin, ruroken, cowboy bebop, bebop, lain, inuyasha, love hina, programming, programmer, c, c++, visual basic, basic, html, music, punk, ska, skapunkemo, classical, orchestrated, jazz, swing, blues, japan, japanese, martial arts, ninjutsu, kempo, kendo, aikido, kung fu, shaolin, samurai, ninja, shogun, psychology, philosophy, religion, christianity, buddha, jesus, buddhism, l337, l33t, leet, 1337, geek, nerd, social outcast&quot;>
</head>

<frameset cols=&quot;200,*&quot;, border=&quot;0&quot;>
<frame name=&quot;nav&quot; src=&quot;nav.html&quot;, noresize, >
<frame name=&quot;main&quot; src=&quot;index.html&quot;, noresize, >
</frameset>


<body bgcolor=&quot;#000000&quot; text=&quot;#CCCCCC&quot; link=&quot;#CCCC99&quot; vlink=&quot;#99CC99&quot; alink=&quot;#999999&quot;>
<center><img src = &quot;files/logo.jpg&quot;></center>
<hr>
<p>
<font face = &quot;arial&quot;>
Hey everybody. Kon wa boku no kyojou, anata butsu chakasu sore. ^_^ Herein, you'll find
rediculous amounts of information on the subjects I have information to give. These
topics usually are grouped into four things: Computers, Music, Japan and anything that
requires a lot of thinking.
</font>
<p>
</body>

</html>
žÅNžÅ
 
I hate to burst your bubble, but only 3-4 keywords are recommended these days. This is your first web page and you have &quot;hacking&quot; under keywords? LMAO!!!
 
ok, fine, too many keywords... *shrug* thosere all of my interests, ill edit the meta tags out. and the only reason i have hacking as a topic is cause i use linux. get over it. žÅNžÅ
 
First, let me warn you that the content of this post may be incorrect, I haven't used frames in quite a while.
On with it :)
The problem here is that you can have framesets or you can have body, but you can't have both. What you will need to do is move all of the body stuff to you index.html file (if it is supposed to be index) or create another frame in your frameset if it is supposed to be a footer or somesuch.

-Tarwn --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---
 
No, it is close to OK I think.

But you need a <noframes> tag around the body somehow.
 
Try this...

<head>
    <title>Kyojou No Mastatsu Suru</title>
    <meta name=&quot;description&quot; content=&quot;A site on some interesting topics. That is, if you like anything about computers, music, japan or thought provoking things. Have fun :p&quot;>
    <meta name=&quot;keywords&quot; content=&quot;computer, computers, hacking, linux, anime, eva, evangelion, kenshin, rurouni kenshin, ruroken, cowboy bebop, bebop, lain, inuyasha, love hina, programming, programmer, c, c++, visual basic, basic, html, music, punk, ska, skapunkemo, classical, orchestrated, jazz, swing, blues, japan, japanese, martial arts, ninjutsu, kempo, kendo, aikido, kung fu, shaolin, samurai, ninja, shogun, psychology, philosophy, religion, christianity, buddha, jesus, buddhism, l337, l33t, leet, 1337, geek, nerd, social outcast&quot;>
</head>
<frameset cols=&quot;200,*&quot;, border=&quot;0&quot;>
    <frame name=&quot;nav&quot; src=&quot;nav.html&quot;, noresize, >
    <frame name=&quot;main&quot; src=&quot;index.html&quot;, noresize, >
</frameset>
<noframes>
<body bgcolor=&quot;#000000&quot; text=&quot;#CCCCCC&quot; link=&quot;#CCCC99&quot; vlink=&quot;#99CC99&quot; alink=&quot;#999999&quot;>
    <center><img src = &quot;files/logo.jpg&quot;></center>
    <hr>
    <p>
    <font face = &quot;arial&quot;>
    Hey everybody. Kon wa boku no kyojou, anata butsu chakasu sore. ^_^ Herein, you'll find
    rediculous amounts of information on the subjects I have information to give. These
    topics usually are grouped into four things: Computers, Music, Japan and anything that
    requires a lot of thinking.
    </font>
    <p>
</body>
</noframes>
</html>











And look here...

 
thank you all, i became inspired at about midnight last night when the answer came... lol

Tarwn and BDNFLNC, you guys rock žÅNžÅ
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top