Without a doubt, you will find a wide variety of developer and webmaster resources that include scripts, tutorials, website ideas, website reviews, and a developer resource directory.

Developer Checklist
These are the basic steps involved in any development project:

  • Start with an idea
  • Research idea
  • Make a content plan
  • Buy a domain 
  • Gather content
  • Buy or design template
  • Get logo made
  • Structure site
  • Fill in content
  • Find web hosting
  • Upload site 

Visit other websites that are owned and operated by Developerz.com.

Domain Names
Free Online Games
Stock Directory
Game Search Engine
Domain Name Directory
Domain Articles
Web Hosting Directory
Cheap Domain Registration

 

   


External File

You can take almost any CSS code in out of your page and make it a separate file. This is very useful if you have many html files with the same CSS code in it. You can set it up where all your html files reference to one external CSS file. Then you can alter that one CSS file and then all the html files using that file will have then changed.

First what you want to do is select a CSS code, I have chosen a code that will change the colors of the scroll bars. In your HTML file it will look some thing like this:

CODE

<style>
body {
scrollbar-face-color: #336699;
scrollbar-shadow-color: #000000;
scrollbar-highlight-color: #054075;
scrollbar-3dlight-color: #000000;
scrollbar-darkshadow-color: #054075;
scrollbar-track-color: #000000;
scrollbar-arrow-color: gray;
scrollbar-base-color: #000000;
</style>


Now what you want to do is copy the bold section of that code and paste it into a blank notepad document. Then save as style.css.

Now start a new HTML document and paste the following code into it:

CODE

<LINK href="style.css" type=text/css rel=stylesheet>


Save the HTML file as whatever.html, what that code does is bring the CSS file into the html file, and you set the url to so it know where the CSS file is located. Now go to the html file and you will see that the scroll bars are colored. Note: This only works with IE 5.5+

Tutorial By Xtasy