Multiple Web Pages?!

Status
Not open for further replies.

joshbrun

New Member
Messages
12
Reaction score
0
Points
1
How can i have multiple web pages? I would like to have a separate "About Me" and "Contact" pages, how can i do that? Thanks in advance!
 

Attachments

  • website screenshot.png
    website screenshot.png
    677.3 KB · Views: 4

bdistler

Well-Known Member
Prime Account
Messages
3,534
Reaction score
196
Points
63
How can i have multiple web pages?
make (code) a page which is 'about you' and name the file something like [ aboutme.html ]
place (upload) that file in your folder [ public_html ]
then set a 'link' on your home page (index.html) to that file - at the "About Me" button I 'see' on your home page

same for other pages you add to you Web site
 

joshbrun

New Member
Messages
12
Reaction score
0
Points
1
Great!!! Thank you! And what about CSS? Do I have to make separate CSS pages as well?
 

bdistler

Well-Known Member
Prime Account
Messages
3,534
Reaction score
196
Points
63
Do I have to make separate CSS pages as well?
that would be a 'yes' and 'no'

while you can keep all of your 'CSS' coding in one file - you may like to keep the 'CSS' coding - that is only used for a page - with the same name as that page - like [ aboutme.css ]

CSS files can get quite large - and hard to edit (after your site grows) as what does what to what page(s)
 
Last edited:

joshbrun

New Member
Messages
12
Reaction score
0
Points
1
for some reason now, everything is highlighted as a link, why is that???
 

Attachments

  • website screenshot.png
    website screenshot.png
    705 KB · Views: 4

Dead-i

x10Hosting Support Ninja
Community Support
Messages
6,084
Reaction score
368
Points
83
Hi Josh,

In the screenshot you provided, the <a> tag hasn't been closed (with </a>). This would be something to fix in your website's HTML code. :)

Thank you,
 

bdistler

Well-Known Member
Prime Account
Messages
3,534
Reaction score
196
Points
63
for some reason now, everything is highlighted as a link, why is that???
try...
HTML:
 <li> <a href="http://joshbrunsred.x10host.com/aboutme.html">About Me</a> </li>
 
Status
Not open for further replies.
Top