|
|||||||
Join now to share free website templates or post on the forum. If you have never been on a forum before read the
FAQ. It's quick, easy and free to join!
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
im totally new building web sites. im learning HTML, CSS and soon after that PHP. I want to know couple of things before i get started. If i make my own template using photoshop or adobe illustrator and upload it using FILEZILLA, how would i propgram the website. Does uploading the template mean that you just upload images, and then you have a seperate html/css txt document outlining how these images are displayed and used. I dont wuite understand the process.
Thanks for any help in advance .
|
|
||||
|
Quote:
You create a graphic of what your page will look like, saved as a psd file. From it you take out all the parts you need and put them into a directory. Here is one example to code a basic Logo from a psd file. You create a "css" file which sets the style and properties for the elements. Code:
/* ----------LOGO STYLES---------- */
#logo {
float: left; /*floats our logo left*/
height: 37px; /*gives our logo a height of 37px same as our logo image*/
width: 270px; /*sets our logo div's height to 270px same as our logo image*/
}
Code:
<div id="logo"><!--LOGO STARTS--> <img src="your_images_directory/logo.png" alt="Welcome To Your PROject" /> </div><!--LOGO ENDS--> 1. a directory with your graphics 2. a style.css fie 3. a somefilename.html again the psd file is the visual graphic you used to create what was in your head. You then cut out the parts you needed and placed them in a directory for use with the "css" and "html" files.
__________________
Consultant - Programmer - WebMaster cleandeck - lawn mower undercoating wilmargraphite - graphite lubricants |
![]() |
| Thread Tools | |
| Display Modes | |
|
|