HTML Help
- LaloHao
- Loyal Member
- Posts: 1987
- Joined: Thu Nov 22, 2007 10:59 pm
- Quick Reply: Yes
- Location: Mexico
Re: HTML Help
If you are hosting your website in your computer you don`t need to upload it anywhere, but if you`re not you have to upload it, and
Code: Select all
Place an Iframe inside the page, the place a tartget link to the Iframe, like the below example.
<html>
<head>
<title>Open Word in Iframe</title>
</head>
<body>
<DIV align="CENTER">
<TABLE BORDER="1" CELLSPACING="1" CELLPADDING="1" WIDTH="100%">
<TR>
<TD WIDTH="25%" ALIGN="left" VALIGN="TOP">
<a href="doc1.doc" target="awindow">Doc 1</A><br>
<a href="doc2.doc" target="awindow">Doc 2</A><br>
<a href="doc3.doc" target="awindow">Doc 3</A>
</TD>
<TD WIDTH="75%" ALIGN="CENTER" VALIGN="TOP">
<iframe name="awindow" frameborder=2 width=580 height=440 src="title.html"></iframe>
</TD></TR></TABLE></CENTER>
</DIV>
</body>
</html>
Replace the doc names with the word document names.
Replace title.html with the file you want to originally show up in the iframe when the page loads.
Jim.- dom
- Global Moderator

- Posts: 9962
- Joined: Wed Mar 08, 2006 10:46 pm
- Quick Reply: Yes
- Location: västkustskt
Re: HTML Help
lol iframe, welcome to 1999.
You need to upload the document for people to be able to see it; they would not be able to access it on your computer unless you set up an FTP.
You need to upload the document for people to be able to see it; they would not be able to access it on your computer unless you set up an FTP.

- NuclearSilo
- Forum God
- Posts: 8834
- Joined: Mon Aug 21, 2006 12:00 pm
- Quick Reply: Yes
- Location: Age of Wushu
Re: HTML Help
I believe you have to redirect traffic from your main IP to your network IP in order make it to work.
Install Apache - XAMPP to setup a server
Install Apache - XAMPP to setup a server
Playing Age of Wushu, dota IMBA
- Riptide
- Common Member
- Posts: 136
- Joined: Tue Jul 22, 2008 11:42 am
- Quick Reply: Yes
- Location: NL
- Contact:
Re: HTML Help
dom wrote:lol iframe, welcome to 1999.
You need to upload the document for people to be able to see it; they would not be able to access it on your computer unless you set up an FTP.
Everybody can keep harrasing frames, there is one thing frames are damn good @ (And divs etc. not). That is partial page loading, you don't need AJAX for that.
Spoiler!
The cake is NO lie


Re: HTML Help
NuclearSilo wrote:I believe you have to redirect traffic from your main IP to your network IP in order make it to work.
Install Apache - XAMPP to setup a server
Really don't need these two, actually you don't need nothing at all. He's still only in html.
Want a document on the web, you have to upload the info. You have to upload the informtion in one way or another for people to see it.
<< banned for being a constant problem. -cin >>
- Riptide
- Common Member
- Posts: 136
- Joined: Tue Jul 22, 2008 11:42 am
- Quick Reply: Yes
- Location: NL
- Contact:
Re: HTML Help
Priam wrote:Frames, tables to build the layout, it's all useless crap. Don't ever use them.
Tables are awesome to present data, they have uses (I needed to say that).
Idd for layout Divs, but seeing this its not going to be a fancy layout website. Its just showing a doc it seems, right? Then tables can be more then sufficient.
The cake is NO lie





