PDA

View Full Version : How to start my own website?


Cedes007
01-07-2003, 11:07 AM
Hi everyone! I am very new to this scene. I recently had an urge to start my own website, but I have no idea how to get started. I went to a search engine and found some great sites to hel pme along the way, but I would still appreciate some input or suggestions to the best places to go. I am just beginning to understand HTML editors and the language, but I have so much more to accomplish. I wanted to use 1stPage 2000 by Evrsoft but everytime I go to download and it takes me to download.com, it says that they no longer have this HTML editor. Does anyone know where else to go to get this? I really would appreciate some kind of help. Thank you!!! :)

Geforc3
01-07-2003, 12:04 PM
Point 1. You need a subject!! for the content of the site

Point 2. you need to now the layout where you want to have the logo navigation the content etc.

Point. 3 which coding you want to use HTML, HTML + CSS, PHP, etc.

and 1st page 2000 Download here http://download.com.com/3001-2048-10033942.html

Cedes007
01-07-2003, 12:57 PM
Thank you for your help Geforc3!! When I went to the address, the download was very successful, but then I was immediately taken to WinZip Wizard. Is this necessary for 1stPage 2000, I read on evrsoft that it is free and will always remain that way. Thank you again! :confused:

MikeParent
01-07-2003, 01:11 PM
1st Page 2000 is free... WinZip is shareware... perhaps you are confused because Winzip is looking for money?

ByteWizard
01-07-2003, 01:42 PM
This Site (http://dev.home.mindspring.com)

will help you with some of the tools you will need.

1) Go through a CSS tutorial or two

2) Then HTML

3) Look at a number of sites similar to the site you want to build...i.e. personal web site, small business, consulting, .........

4) Take paper & pencil (remember that stuff) and make a rough sketch of how you want the site to look.

5) Jump in with both feet and build a small site or two.

6) Build your site

7) Have someone critique your site

8) Rebuild your site

9) Go to step 7

Cedes007
01-07-2003, 02:07 PM
Thank you ByteWizard and MikeParent for the extra help and advice. I really hope I can do this. I have a question for you ByteWizard:

Go through a CSS tutorial or two and then HTML

I keep reading that HTML is the best and is versatile with everything, so is it wise to know CSS? I'm sure it is, but I just want to understand. Again, I'm sure you know more than I do, lol. It's all so confusing.

Thank you!

MikeParent
01-07-2003, 03:39 PM
One of the more challenging things about building websites (professionally at least) is how to make it look "correct" in multiple browsers (at a minimum the latest versions of netscape and ie)

One slick way of doing this is to use javascript to detect the user's browser and use a CSS stylesheet (1 per browser) to customize the look of the content. It means that in order to support another browser, all you need is one stylesheet - this stylesheet is referenced from all your pages. When you want to change the whole look of your site just change the one stylesheet and it changes the look of all pages... extremely handy!

Zero Angel
01-07-2003, 04:02 PM
You can also use a 'Doctype' declaration to do away with a lot of the quirks that different browsers introduce.

More info can be found at A List Apart (http://www.alistapart.com/stories/doctype/). There is a lot of good articles there, I'd recommend it to any web developers, from novice to expert.

MikeParent
01-07-2003, 04:09 PM
Interesting article Zero, thanks - will have to give this a read...

DCElliott
01-07-2003, 04:28 PM
Guys Guys Guys

Slow down.

First ya gotta write plain jane HTML, learning to dot your I's and cross your t's. Forget CSS for now, and definitely forget browser detection scripts, etc.

<html>
<head>
<title>
Hello world example
</title>
</head>
<body>
<!-- This is a comment - it doesn't show up but is useful
for documenting your code -->
<h1>I'm a main heading</h1>
<p>This is a paragraph</p>
<p>And this is another</p>
<h4>I'm a small heading</h4>
<br />
This is a list of colors:
<ul>
<li>red</li>
<li>orange</li>
<li>yellow</li>
<li>green</li>
</ul>
Here is a table:
<table>
<tr>
<td>Row 1 Col 1</td>
<td>Row 1 Col 2</td>
</tr>
<tr>
<td>Row 2 Col 1</td>
<td>Row 2 Col 2</td>
</tr>
</table>
And before we forget, here is an anchor (or link):
<a href="http://developers.evrsoft.com/forum/newreply.php?
s=&action=newreply&threadid=959">Reply to this thread</a>
</body>
</html>The above is a webpage using most of the common HTML tags. You need to be comfortable with knowing what these tags are, and how to use them properly. With one exception, all the above tags are paired (which one isn't, and do you know why?). You turn them on, then you turn them off. Like a stove element - if you don't turn them off, you can get burned, or at least scorch your page.:p

STAY AWAY from <font> and other tags that change the appearance of your text. They are part of "old-school" HTML. As several people have mentioned CSS (Cascading style sheets) are the modern way to go and are a lot easier to use in the long run. Have you ever used styles in a word processor? (If you don't you should!) If you use styles to format text in a word processor, editing the style can change the text everywhere in the document. That's how CSS works, too. But for it to work - you have to have an absolutely clean document - no codes for fonts, colors, positioning, etc.

Basic HTML has a fairly good variety of appearances - but they are based on what the semantic structure of the document is: You know - title, subtitle, table of contents (a list, right?) another title, paragraphs, subsection etc. HTML make these different elements look different by default. Learn how the different parts look. With CSS we can go on to change the look of any of these elements to suit our own style. BUT THAT COMES LATER.

Baby steps - too many folks crash and burn trying to do too much all at once.

ByteWizard
01-07-2003, 04:47 PM
I agree you need to start very slow. I think it is also valuable to have a realization that these other worlds exist.

BTW... CSS, Cascading Style Sheets, go hand in hand with good HTML, Hypertext Markup Language. Read some tutorials. Don't worry that you do not understand all you read. Most of the tutorials will have a beginner version and advanced. Just read the beginner version.

I really believe you should not start bad habits simply because you do not know they are bad.

I didn't mention XHTML, JavaScript, Flash, etc. those surely come later.

Keep it simple but be aware. You will read the tutorials over and over and over.

I have to go now to re-read a tutorial........

Cedes007
01-07-2003, 05:03 PM
Once again, thanks to everyone for your input, I really appreciate it. I guess the best thing to do is start out slow and read , read, read, as I continue to find out. I hope to come along very well and will probably need more guidance in the future. LOL. Thanks again everyone. :crazy:

MikeParent
01-08-2003, 02:51 AM
DCElliot is right, HTML is where you wanna start - sorry for getting off on a tangent there :-)