Designing a Website: Monique's First Steps

  • Thread starter Thread starter Monique
  • Start date Start date
  • Tags Tags
    Designing
AI Thread Summary
A user discovered they have a personal domain and began experimenting with it, seeking assistance with HTML. They created a homepage (index.html) and a secondary page (picturepage.html) but faced issues with linking. Initially, the link did not work due to a typo and incorrect file references. After troubleshooting, they found that adjusting the link to include the full path resolved the issue. The discussion highlighted the importance of correct file naming and directory structure in web development. Additionally, resources for learning HTML were shared, including websites like HTML Goodies and W3Schools. The user received positive feedback on their color choices and suggestions for future content, such as adding a forum and biology facts.
Monique
Staff Emeritus
Science Advisor
Gold Member
Messages
4,211
Reaction score
68
Yesterday I found out I actually have a domain on my name

So I started playing with it a little.. I will need some help though, since I don't know HTML or anything about this stuff.. http://home.student.uva.nl/monique.vandervoet/"

Not entirely too bad, huh? so yesterday the picture was still working, not sure why it isn't anymore.. but what I'd like to do is make a second page. So I wrote:

<P><a href="picturepage.html">some pictures can be found here :)</a></p>

I have a single folder into which the files can be put, the homepage must be index.html so I made a file picturepage.html and figured the link should work.. but it doesn't :frown: any help?
 
Last edited by a moderator:
Computer science news on Phys.org
ok dumnb question but did you put the picturepage.html on the server (I mean in the same directory with index.html)?
 
lol, yes they are in the same directory ON the server
who do you think I am ;)
 
Originally posted by Monique
<P><a href="picturepage.htm">some pictures can be found here :)</a></p>

I have a single folder into which the files can be put, the homepage must be index.html so I made a file picturepage.html and figured the link should work.. but it doesn't :frown: any help?

Either the link should point to picturepage.html, or the file should be renamed to picturepage.htm.
 
Well, I had already tried making them both htm or both html, after which I made a typo.. doesn't work though.
 
OK, I have gotten it to work by deleting the header of the page with the banner :) so the problem must be somewhere in there..
 
Is it still not working? Going directly to picturepage.html works for me.
 
Which page is that?
 
If I delete everything and only leave the stuff inside the <!-- End of Header --> and the <!-- Start of Footer -->, the link to the other page works.

I am a rookie when it comes to writing and reading HTML so I am sure there are redundant and maybe conficting terms in there :P

I'll try to figure it out though..
 
  • #10
Ah, I see...change your link to point to monique.vandervoet/picturepage.html instead of just picturepage.html. You shouldn't need to in most cases...I'm not sure why it doesn't link to that page.
 
  • #11
it could be this
<base href="http://.homestudent.uva.nl/">

try adding monique.vandervoet/at the end like this
<base href="http://.homestudent.uva.nl/monique.vandervoet/">

I'll check but I haven't seen this label in the HTML standard [?]
 
Last edited by a moderator:
  • #12
AHA!

You both are right, I just tried putting /monique.vandervoet/picturepage.html which is working now. And I'm going to try the smart thing that you also suggested, Guybrush :)

OUCH! if I change the standard reference address, it won't find the banner of the university anymore, but at least I know what was causing it :)
 
Last edited:
  • #13
So which are the good places to find some HTML code that can be used? Such as background colors, fonts etc?
 
  • #15
Originally posted by dduardo
Here
Thanks!

Greg should better be afraid :wink:
 
  • #17
  • #18
Originally posted by Monique
Yesterday I found out I actually have a domain on my name


For a beginner, your choice of colors is pretty good. Perhaps in the future you can add a forum, and some fun facts on Biology.
 
Last edited:
Back
Top