954,113 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

re: Website

Hey, I'm new to web design and I need tips on how to start to deign a website starting from the basics, step by step

walba
Newbie Poster
15 posts since May 2007
Reputation Points: 10
Solved Threads: 0
 

[indent]
Start with:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
  <head>
    <title>YOUR PAGE TITLE HERE</title>
    <link href="" rel="stylesheet" type="text/css">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <meta name="description" content="">
    <meta name="keywords" content="">
  </head>
  <body>
    <h1>MAIN HEADING HERE</h1>
    <p>
      <!-- PARAGRAPH HERE -->
    </p>


Read about HTML and CSS at http://www.w3.org .

Read the tutorials at http://htmldog.com (use HTML not XHTML).

Always validate your pages at http://validator.w3.org .
[/indent]

cfajohnson
Junior Poster
196 posts since Dec 2008
Reputation Points: 25
Solved Threads: 23
 

After you're familiar with CSS and HTML, I would suggest you move into XHTML. I find the semantics to be cleaner. HTML and XHTML are pretty much the same except they enforce HTML rules more strictly.

seanooi
Newbie Poster
19 posts since May 2009
Reputation Points: 10
Solved Threads: 0
 

I'd start with web development tools such as adobe dreamweaver or eclipse. I started with just developing a simple myspace page to my likings. Adjust background, quizzes, widgets, etc.

Of course you could just try to code directly from a text editor with the bare bottom basics instead of learn as you go. I recommend a learn as you go approach rather than trying to memorize a bunch of different concepts and then code from scratch.

Beg.CProgrammer
Newbie Poster
12 posts since Oct 2009
Reputation Points: 10
Solved Threads: 2
 

If you are newbie in creating a Web I think you should goto this url
http://w3schools.com/html/default.asp
It is a free online tutorial about anything...^_^
The instructions are very easy to get...

mhovidz
Newbie Poster
11 posts since Mar 2007
Reputation Points: 10
Solved Threads: 0
 

Note that w3schools has nothing to do with the W3 Consortium, and much of its information is inaccurate.

cfajohnson
Junior Poster
196 posts since Dec 2008
Reputation Points: 25
Solved Threads: 23
 

Inaccurate?Really? Thanks for your reply...im still newbie ^_^

mhovidz
Newbie Poster
11 posts since Mar 2007
Reputation Points: 10
Solved Threads: 0
 
After you're familiar with CSS and HTML, I would suggest you move into XHTML. I find the semantics to be cleaner. HTML and XHTML are pretty much the same except they enforce HTML rules more strictly.


XHTML cannot be served as XHTML because the most-used browser wouldn't know what to do with it. IE will offer to download the file is it is served as XHTML.

If it is not served as XHTML, then all browsers will treat it as badly formed HTML, possible going into quirks mode as a result.

There is currently no point in using XHTML.

cfajohnson
Junior Poster
196 posts since Dec 2008
Reputation Points: 25
Solved Threads: 23
 

I see! Sir can you suggest me a site where can I learn HTML & CSS fast. Thanks and regards..

mhovidz
Newbie Poster
11 posts since Mar 2007
Reputation Points: 10
Solved Threads: 0
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You