Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Website Design Forum


You are currently viewing our Website Design Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Beginner Needs Help Getting Started
Old 11-23-2006, 02:39 PM Beginner Needs Help Getting Started
Junior Talker

Posts: 1
Name: M Heyman
Trades: 0
Can someone show me how to make changes to my own web site? I would like to start out with just a couple of simple tasks step by step tasks to get me started as I have no knowledge on how to modify or create a web site. If interested I can forward url and specific tasks. Thank you.
mheyman is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 11-24-2006, 03:01 AM Re: Beginner Needs Help Getting Started
Super Talker

Posts: 124
Name: Chris
Trades: 0
I can't help you directly but I can give some pointers. But first is your site html, xml, does it have php/asp in it?
If it is just straight html my suggestion is to look up some beginner tutorials. Seriously, most people learn by doing it right? Follow a tutorial, don't just copy and paste the code they give you either type it out so you get used to doing it. For example the first lesson you will learn is a basic proper html setup which looks a lot like this:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
    <title>This goes in the titlebar</title>
    <!----- Various scripts and links to scripts and style sheeting go here ---->
</head>
<body>

<!----- This is where the text on the screen will show up! ------>

<h1>MY First Webpage</h1><br><br>

This is my first webpage!

</body>

</html>
Ok lets examine this code a bit. The first line you won't need to worry about until later. Basically this tells your browser what formatting you are using (which markup version, etc. There is a site called: www.w3.org (also www.w3c.org ) or the world wide web consortium. Basically it has the standard syntax for any html tag you use as well as other languages and coding types such ans stylesheeting and XML. But like I said, ignore this for now... I use strict type html 4.01 on all my sites and it is a pain int eh *** sometimes which you will come to find out if you do want to learn more advanced things later.

But for now:

Every html page starts with a <html> tag.

This basically yells to the browser My webpage Starts here!!!! A few things happen that are a bit advanced when the browser reads this in. First of all a connection is established between the server and the browser (not a continuous one) Where information that are called headers are passed fromt he browser tot eh server....but I won't go into detail about that because it is quite advanced for someone like you (maybe, I dont want to assume).

Next comes <head> . Basically this is the top of your webpage where you can link outside files such as stylesheets and javascript scripts, etc. It is proper to place those within the <head></head> tag.

You can also place meta-tags inside the head which is proper as well. But you will learn more about those in other tutorials.

Also a very important thing that the <head> tags include in between them is the <title> tags. If you look at the top of your browser now it says: Beginner Needs help getting started.

Well they did:

<title>Beginner needs help getting started</title>

Now they dont make every page by hand that is controlled through other forms of coding which you should ignore for right now. let's just stick to the basics.

Ok also you if you noticed almost all my tags are closed. by closed I mean every tag: <head> has a closing tag: </head> .

There are some tags that do not require and end tag such as <br> but in proper html and also in XML languages to close the <br> tag you would do: <br /> Either way will work in your html file.

Ok the next most important part of a website is the <body>

This is where everythign goes that is displayed right here where you are reading! in your browser window!. Any text typed within there will display it on the screen. Try it out if you like! Open a text editing program like notepad or something and save a file to your desktop called: first.html or first.htm . You can then click on it and it should open up in your browser (if your computer is configured to) and you can view the test you typed in there.

The extra stuff I included within the body tag you will learn more about when doing more tutorials. this was to just get you started.

Also your <html> ending tag should always be the last thing on the bottom of the page...this basically tells your browser, I'm done! or end of file.

If you need more help, google: beginner html tutorials

It will bring up tons of sites you can look through so that you can learn the basics!
__________________
Chris - Trying to help others and learn myself!

Please login or register to view this content. Registration is FREE
ctess is offline
Reply With Quote
View Public Profile
 
Old 01-11-2007, 06:38 PM Re: Beginner Needs Help Getting Started
franklindeleon's Avatar
Novice Talker

Posts: 11
Name: Franklin de Leon
Trades: 0
go to http://www.w3schools.com they have very useful tutorials
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
franklindeleon is offline
Reply With Quote
View Public Profile
 
Old 01-11-2007, 08:12 PM Re: Beginner Needs Help Getting Started
Banned

Posts: 905
Name: Travel Agent
Trades: 0
LOL -- now, wait a minute! You came here to ask ... "Can someone show me how to make changes to my own web site?"

DUHHHH -- if you made the original site, why does anyone here need to show you how to make changes to your own site???

I smell "Link Bait" here...
travelagent is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Beginner Needs Help Getting Started
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.44626 seconds with 12 queries