Putting a document on a website

Associate
Joined
14 Nov 2005
Posts
1,396
Location
Belfast
ok so for part of my course i have to make a website and i have to put my cv on the website. i was wondering how i would make a link that would open/download a document. i have looked around a few tutorials but dont really know what to look for code wise :)

thnx

Timmy

:EDIT: using html btw :)
 
Last edited:
to make a document (assuming word document here) more professional, you could convert it adobe reader format using a programme like Primo PDF (a print emulator), then upload the adobe icon and allow them to download the PDF instead.
 
to make a document (assuming word document here) more professional, you could convert it adobe reader format using a programme like Primo PDF (a print emulator), then upload the adobe icon and allow them to download the PDF instead.

nice idea thanks :)

also how do i align a picture to the centre

<img align="center" src="me.jpg" width="100" height="107">

this doesnt work no matter where i put the align, and im new to html :)
 
Last edited:
nice idea thanks :)

also how do i align a picture to the centre

<img align="center" src="me.jpg" width="100" height="107">

this doesnt work no matter where i put the align, and im new to html :)

esimplest route would be to put the whole image inside a div that is center using the following code:

<div align="center">
image here
</div>

or make a div and define it in your css as being centered
 
nice idea thanks :)

also how do i align a picture to the centre

<img align="center" src="me.jpg" width="100" height="107">

this doesnt work no matter where i put the align, and im new to html :)

embed your img tag inside a div set to align its content in the center. Take a look a CSS for presentation as well.

eg,
<div style="text-align: center;"><img.../></div>
 
esimplest route would be to put the whole image inside a div that is center using the following code:

<div align="center">
image here
</div>

or make a div and define it in your css as being centered

cool thnx very much. what does the div tag stand for, i need to put comments on my page :)
 
Back
Top Bottom