3 Replies - 388 Views - Last Post: 19 February 2010 - 04:39 PM

#1 wizardcloak  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 37
  • Joined: 22-December 09

LInking two or more HTML DOCS

Posted 19 February 2010 - 02:27 PM

wizardcloak
I have two or more HTML docs to link together. The original doc linkks fine to a Web URL but will not link to another .html doc located adjacent to the original html doc within MY Documents. I have one CSS file and one gif file that work fine.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Wireless Security</title>

   <link rel="stylesheet" href="mystyle.css">
</head>
<body><ul class="navbar">
  <li><a href="http://www.linksysbycisco.com/US/en/support" title=Help target=”window”>Linksys Router Help</a>
  <li><a href=”test3.htm” title= next page target "main">Page2</a> </ul>




Is This A Good Question/Topic? 0
  • +

Replies To: LInking two or more HTML DOCS

#2 Lemur  Icon User is offline

  • OpenBSD Head
  • member icon


Reputation: 1112
  • View blog
  • Posts: 3,061
  • Joined: 28-November 09

Re: LInking two or more HTML DOCS

Posted 19 February 2010 - 03:20 PM

<li><a href="http://www.linksysbycisco.com/US/en/support" title=Help target=”window”>Linksys Router Help</a>
<li><a href=”test3.htm” title= next page target "main">Page2</a> </ul>



to...

<li><a href="http://www.linksysbycisco.com/US/en/support" title="Help" target=”window”>Linksys Router Help</a></li>
<li><a href=”test3.htm” title="next page" target="main">Page2</a></li> </ul>



You have to close every tag, you do know that right?

EDIT - and stylesheet deceleration is incomplete:
<link rel="stylesheet" type="text/css" href="mystyle.css" />

This post has been edited by Lemur: 19 February 2010 - 03:21 PM

Was This Post Helpful? 1
  • +
  • -

#3 wizardcloak  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 37
  • Joined: 22-December 09

Re: LInking two or more HTML DOCS

Posted 19 February 2010 - 04:18 PM

wizardcloak
I made the changes and rather than getting the IE error page I get a small error window that says it cannot find the file. The web link works fine. Thank you. This is my first HTML project.
Was This Post Helpful? 0
  • +
  • -

#4 wizardcloak  Icon User is offline

  • New D.I.C Head

Reputation: 0
  • View blog
  • Posts: 37
  • Joined: 22-December 09

Re: LInking two or more HTML DOCS

Posted 19 February 2010 - 04:39 PM

[quote name='Lemur' date='19 February 2010 - 02:20 PM' timestamp='1266618035' post='932149']
<li><a href="http://www.linksysbycisco.com/US/en/support" title=Help target=”window”>Linksys Router Help</a>
<li><a href=”test3.htm” title= next page target "main">Page2</a> </ul>



Thanks again Lemur. I took away the quote marks before and after the file name and it worked. My mind would not let me rest until I got that one.
:ph34r: :blink:
Was This Post Helpful? 0
  • +
  • -

Page 1 of 1