Page 1 of 1
HTML Help
Posted: Wed Mar 11, 2009 3:59 am
by Verfo
Alright, if i have a word document, can i link it on my website without uploading it anywhere?
Re: HTML Help
Posted: Wed Mar 11, 2009 4:07 am
by Brago
use the Code key
Code: Select all
Hallo
5+5 = 10 because of the scietific method.
Re: HTML Help
Posted: Wed Mar 11, 2009 4:37 am
by Verfo
...What?
mind giving me the code?
Re: HTML Help
Posted: Wed Mar 11, 2009 4:55 am
by LaloHao
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.
Re: HTML Help
Posted: Wed Mar 11, 2009 11:09 am
by dom
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.
Re: HTML Help
Posted: Wed Mar 11, 2009 7:14 pm
by NuclearSilo
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
Re: HTML Help
Posted: Thu Mar 12, 2009 7:56 am
by Riptide
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.
Re: HTML Help
Posted: Thu Mar 12, 2009 9:20 am
by Priam
Frames, tables to build the layout, it's all useless crap. Don't ever use them.
Re: HTML Help
Posted: Thu Mar 12, 2009 9:53 am
by Crumpets
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.
Re: HTML Help
Posted: Thu Mar 12, 2009 12:47 pm
by Riptide
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.