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

 

   


Links in HTML

CODE
<font size='7'><b>3 types of links</b></font>

<b>Regular Link</b>

<A HREF="URL_HERE">Text Here</A>

If you want a link to open in an iframe make

<A HREF="URL HERE" TARGET="NAME OF IFRAME HERE">Text Here</A>

to know the name of the iframe .. look for the iframe and in the tag should be an attribute: name=""

-----------------

<b>E-mail link</b>

<A HREF="mailto:E-MAIL HERE">Text Here</A>

------------------

<b>Load on a specific location of page</b>

1st you have to know where you wanna make the page to load

----Example---

Text Here
Text Here
Text Here
Text Here

I wanna make my pag load here.

---End of example-----

If i wanna make the page load on "I wanna make my pag load here." view it as HTML and b4 that text put

<A NAME="Load">I wanna make my pag load here.</A>

Then when u wanna make the link

<A HREF="#Load">Text Here</A>

See how after the # it says Load...it HAS to match the name.

Tutorial By Boricua