midPhase Web Hosting - $7.95/month - 500 GB B/W!
 
Home Register FAQ Members List Calendar Search Today's Posts Mark Forums Read Web Directory

Go Back   Webmaster Forum > Designing and Developing Websites > Web Design

Web Design Discussions and help on Website Design, HTML, CSS, xHTML, DHTML, etc...

Reply
 
Thread Tools Display Modes
  #1 (permalink)  
Old 03-04-2007, 05:24 AM
clookid clookid is offline
WMG Newcomer
 
Join Date: Mar 2007
Posts: 21
iTrader: (0)
clookid is on a distinguished road
Default HTML Introduction

HTML Introduction

Welcome to the HTML Introduction by Clookid! I reccomend you read this tutorial before going any further in web scripting, HTML is a must before almost every other scripting language.

After reading this tutorial you will know:
  • how to start an HTML document.
  • what HTML stands for.
  • what HTML actually is.
  • the head tag.
  • how to add a title to your document.
  • where the title is displayed.
  • the body tag.
  • how to add text onto a page.
  • how to close tags and how to end an HTML document.
  • how to view source code on other websites (the code used to make the webpage).
Before starting this tutorial you should know:
  • English....
HTML stands for Hypertext Markup Language and is used for very basic web scripting.
I am first of all going to bring an example into production and tell you what it does. After that I will teach you about each line of the example meaning you will be able to create your own HTML page that will be equivalent to a .txt document except your HTML document will have a title.

Here is the example:

Example 1-1:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  <html>
    <head>
      <title>HTML Example</title>
  </head>
  <body>
    Hello, I am an HTML example!
  </body>
</html>
The above example will output the following:
Hello, I am an HTML example!

HTML is a very useful scripting language and is so simple to learn!
If you are struggling with this tutorial come back to it later and if you are still struggling when you come back got to the Forums and ask in the Support section about whatever you are struggling with.

Line 1:
This you do not really need to remember, just copy and paste it into your HTML document. Infact you do not even need to include this but I reccomend you do. This tells people the version of HTML that you are using when they view your source code.

Line 2:
This line of code begins your HTML document, remember this.

Line 3:
This is the head tag. This is just filtering your HTML making it easier to read, always use this!

Line 4:
This is the title tag, I will explain a little more about this later on in the tutorial.

Line 5:
This is closing the head tag, remember this line!

Line 6:
This is the body tag. Once again it is just filtering your HTML making it easier to read. This is where all of your main content will be stored, do not forget this!

Line 7:
This is just the text that you are wanting to output into the browser, you can place other things in here; I will teach you more things later.

Line 8:
This is just another closing tag, do not forget this!

Line 9:
This is closing the HTML document altogether, you must always use this!!

You know how I said I will tell you more about the title tag later, now is the time. Take a look at the top of your browser where it says 'HTML Introduction - Webmaster Forum', this is a title.
If you ever wonder how someone does something on an HTML page; click on 'Veiw << Source Code' in your web browser, this shows you the source code of the page that you are veiwing.

Don't give up, keep reading more tutorials on HTML. Remember what you have learnt, it is very useful!

You must have authors permission to spread this tutorial!
Reply With Quote
Sponsored Links
Register and sign in to hide this ad block

  #2 (permalink)  
Old 03-25-2007, 09:28 PM
J0ker J0ker is offline
WMG Resident Alien
 
Join Date: Mar 2007
Posts: 109
iTrader: (0)
J0ker is on a distinguished road
Default

That is a pretty indepth guide. I already know HTML, but I'm glad people are writing tutorials, this is a pretty good quality one.
Reply With Quote
  #3 (permalink)  
Old 03-26-2007, 01:16 AM
creek23 creek23 is offline
WMG Deputy Sheriff
 
Join Date: Mar 2007
Posts: 290
iTrader: (0)
creek23 is on a distinguished road
Default

Quote:
Originally Posted by clookid View Post
Before starting this tutorial you should know:
  • English....
you pointed out the very best weakness in programming. most programming languages are developed by english-speaking people making commands an english-like terms. also, most tutorials are made in english so non-english speaking people takes the hard time learning.

Last edited by creek23 : 03-26-2007 at 02:15 AM. Reason: closed quote tag -- thanks joker
Reply With Quote
  #4 (permalink)  
Old 03-26-2007, 02:01 AM
J0ker J0ker is offline
WMG Resident Alien
 
Join Date: Mar 2007
Posts: 109
iTrader: (0)
J0ker is on a distinguished road
Default

creek23 add a [/quote] to the end of that

Also, this brought a question I have. I know, for example, china keybaords have chinese symbols and they write using their language, so how would programming work. It can't be an english only thing, otherwise all programmers around the world would have to learn english and get english computers and keybaords which I know isnt the case. Are programming languages translated?
Reply With Quote
  #5 (permalink)  
Old 03-26-2007, 02:19 AM
creek23 creek23 is offline
WMG Deputy Sheriff
 
Join Date: Mar 2007
Posts: 290
iTrader: (0)
creek23 is on a distinguished road
Default

My friends just attended an IT seminar in Thailand this March, and they say their computer also uses Thai keyboard. When I asked how do they program stuff, they said there is somekind of a translator program to make the Thai-written codes into an english-written codes then have the compiler read the english codes instead. pretty tough translator eh?
Reply With Quote
  #6 (permalink)  
Old 03-26-2007, 02:35 AM
technoguy technoguy is offline
WMG Citizen
 
Join Date: Mar 2007
Posts: 436
iTrader: (0)
technoguy is on a distinguished road
Default

I have used chinese characters for one of my client too. But he has given me characters in ms word and I have just pasted those words in dreamweaver. But you have to set charcter set to UTF-8 for that in html documents.
Reply With Quote
  #7 (permalink)  
Old 03-26-2007, 02:53 AM
J0ker J0ker is offline
WMG Resident Alien
 
Join Date: Mar 2007
Posts: 109
iTrader: (0)
J0ker is on a distinguished road
Default

@techonoguy - using a different language to display text is not what we are talking about, please read carefully before posting

As for creek, that sure does sound like a hassle! My question is are the error messages translated back to thai? If not that could be quite an annoyance, having an error and not having any idea whats its about. Then again.. error messages very rarely even remotely describe what the real problem is.
Reply With Quote
  #8 (permalink)  
Old 03-26-2007, 04:43 AM
creek23 creek23 is offline
WMG Deputy Sheriff
 
Join Date: Mar 2007
Posts: 290
iTrader: (0)
creek23 is on a distinguished road
Default

Quote:
Originally Posted by J0ker View Post
...are the error messages translated back to thai? If not that could be quite an annoyance, having an error and not having any idea whats its about. Then again.. error messages very rarely even remotely describe what the real problem is.
that's another thing, Thai doesn't really know how to read and speak english. the program calls for the compiling and linking of the program and linker will give the errors to the "translator"...
Reply With Quote
Reply


Thread Tools
Display Modes

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

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

All times are GMT. The time now is 12:40 AM.



Freelance Web Designers
Work At Home Forum
Ad Marketplace
Online Deals and Bargains
iPowerWeb Hosting Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0