HTML basic question
- Started
- Last post
- 6 Responses
- Fher
Hello Pals,
Here´s the quiz... how does NT make to create like a HTML site in the tables... like this 4 columns???
Is it posible to insert a HTML site in a table?
Thanks, best regards.
- ********0
Tables are in the HTML, (everything is).
It's basically like this, someone correct me if I'm wrong...
[html]
[center]
[table][tr]
[td width="100"]
COLUMN 1 IS HERE
[/td][td width="100"]
COLUMN 2 IS HERE
[/td][td width="100"]
COLUMN 3 IS HERE
[/td][td width="100"]
COLUMN 4 IS HERE
[/td][/tr]
[/table]
[/center]
[/html]
- Xentic0
I guess you mean the iframes in a table? If you learn a little HTML and study the source of Newstoday I think you'll find out how to do that.
It's pretty easy stuff. You can put an iframe to wathever table cell you want. than you make another html page to load into that iframe...
- ********0
Wait, are you talking about the i-frames?...
[td width="100"]
[iframe src="YOURPAGEHERE.html" name="main" height="400" width="100"]
[/iframe][/td]
- ********0
ok, i-frames it is.
- infect0
actually, NT uses iframes within div tags. the iframes are what allow the vertical scrolling to happen within the columns, for example.
The main site is really just a few different pages stitched together using these iframes:
QBN certified column:
http://newstoday.com/certified/c…NTB column:
http://newstoday.com/ntb/ntb.php…PBS column:
http://newstoday.com/pbs/pbs.php…etc...
- Fher0
Yep, that´s it, the keyword is iFrame so i will read on how to do it...
Yes, ist about loading a site into a (frame) table...
Thanks for your support, whish u all a nice day...