0
   

Intro to HTML

 
 
Reply Tue 8 Oct, 2002 11:33 am
What is HTML?

HTML stands for the HyperText Markup Language. HTML files are plain text files, so they can be composed and edited on any type of computer... Windows, Mac, UNIX....

How do I make pages using HTML?

You can use a WYSIWYG (what you see is what you get) editor like Dreamweaver (the best for advanced users) or Front Page (best for beginners, if you have MS Office you probably have this). Or you can simply use notepad. Using notepad isn't easy for a beginner. I can visualize a page looking at the html but for a beginner it will look like jumbled code.

Don't fret. HTML is simple! If you have questions about HTML I'll answer them.

I copied the source code from this forum and it doesn't work, why?

Because this forum isn't made with HTML, each page is generated on the fly by the server. This is a dynamic page running off many pages of PHP code and a database and parsed by a PHP engine. It's not a static HTML page. This is a basic HTML tutorial and does not deal with dynamic database driven sites.

When I have time I'll write up some tutorials about other code such as PHP.

Back to HTML:

HTML is a series of tags that are integrated into a text document. Tags start with an angle bracket "<" and end with a slash "/" then the angle bracket ">".

Here is an example:

bold
Code:<b>text</b>


This would show up as: text

italicized:
Code:<i>text</i>


This would show up as: text

A basic page's HTML would look something like this:

Code:
<html>
<head>
<title>Title of Page</title>
</head>

<body>
<h1>Page Header</h1>

<p>Some text text text text
<p>Some text text text

text

</body>
</html>




If you copy that bit of HTML to notepad and save it as: filename.html you will have an html page (you have to save with the .htm or .html file extension or it will be a text file ( .txt ).

Open the html file in your browser and you will see.

The part bewteen the head tags is not seen on the page. The part between the body tags is what makes up the visible part of a webpage.

In the next tutorials I'll explain what different HTML tags do.
  • Topic Stats
  • Top Replies
  • Link to this Topic
Type: Discussion • Score: 0 • Views: 1,882 • Replies: 5
No top replies

 
maxsdadeo
 
  1  
Reply Mon 25 Nov, 2002 07:50 am
For those of us who just know enough to be dangerous to ourselves, thanks craven.

And uh, I think your avatar is trying to say something.
0 Replies
 
Craven de Kere
 
  1  
Reply Mon 25 Nov, 2002 07:59 am
My avatar is just my first attempt at animation. I'm toying with graphics as graphics are the very last hurdles I need to clear in order to know all I need about webdesign.

I'll eventually write up more tutorials and answer more questions when I have the time.
0 Replies
 
JoanneDorel
 
  1  
Reply Mon 25 Nov, 2002 09:16 am
Very interesting CDK and I am with max on this re a little knowledge being dangerous on the puter. But it is intersting non-the-less I have always wondered what HTML meant.

As for the new Avatar, hmm, very scary and reminds me of the Matrix. I guess you would rather talk than see though.
0 Replies
 
babsatamelia
 
  1  
Reply Mon 25 Nov, 2002 07:03 pm
Hellooooo Maxsdadeo, SO very nice to see you here,
I remember you from the Abuzzards.
Yes thank you, Craven the raven, I do hope you
continue with your html course #1 html for beginners.
I do so want to create my own web page, but I want
it to be very interesting, very slick and very chic
& hugely attractive to the eye. Even though I have
worked WITH computers for years,
I still lack the guts of it all, and want to learn.
0 Replies
 
husker
 
  1  
Reply Mon 25 Nov, 2002 07:25 pm
<b>hmm nice</b>
0 Replies
 
 

Related Topics

Webdevelopment and hosting - Question by harisit2005
Showing an Ico File - Discussion by Brandon9000
how to earn money in internet - Discussion by rizwanaraj
The version 10 bug. Worse then Y2K! - Discussion by Nick Ashley
CSS Border style colors - Question by meesa
There is no Wisdom in Crowds - Discussion by ebrown p
THANK YOU CRAVEN AND NICK!!! - Discussion by dagmaraka
I'm the developer - Discussion by Nick Ashley
 
  1. Forums
  2. » Intro to HTML
Copyright © 2025 MadLab, LLC :: Terms of Service :: Privacy Policy :: Page generated in 0.03 seconds on 01/15/2025 at 04:02:56