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.
<html>
<head>
<title>Your Title</title>
</head>
<body>
The Main Content goes here.
</body>
</html>
As you can see that HTML (Hypertext Markup Language) is made
up of tags:
CODE
<html></html>
The one with the backslash is the ending tag.
The "HTML" tags start and end the document. The
"head" tags hold code that will load first but do
not appear on the screen. JavaScript functions, CSS style's,
and Meta Tags are put in here often. The "title"
tags hold the tile that holds the text that will display on
your browser window. The "body" tags hold all the
main content that will display on the site.
This is only the beginning...have fun as you venture out into
the world of HTML.