Code Newbie
News     Forums     Search     Members     Sign Up    

My Code Newbie
Username

Password

Articles/Snippets
ASP Classic
ASP.NET
C
C#
C++
HTML / CSS
Java
Javascript
Linux / BSD
Perl
PHP
Python
Ruby
SQL
VB 6
VB.NET

C.N. Friends
  Planet Rome

Link to Us!
Code Newbie
  Code Newbie
    html
  » Making a basic page in HTML
      by MeMe
 Page 1 of 1 
   

(Login to remove green text ads)
To make a basic page in HTML, here are the main "tags" you will use:

html = lets the browser know the page is written in html
head = this contains information about the document
title = puts the name of the page in the header of the browser window
body = this is the bulk of your page

One thing to remember is that most tags need opening and closing tags so the browser knows when to start a command and when to stop it. So, it's a good idea to always use closing tags to get into the habit.

An opening tag is written inside brackets <tag> and closing tags are written inside brackets with a slash </tag>

First, open an editor such as notepad and begin typing...



Code:
<html> <head><title>you can type the name of your site here</title></head> <body> The information you want seen on the page will be written here. </body> </html>

Then when you save your work, save it with .html after the name of your page... that way your computer knows that it is a web page and not a text (.txt) file. After it is saved, go to where you saved it, double click on it, and, if you did everything correctly, it will open a browser window with your page.

Congratulations!! You just made your first html web page!!




 
 Page 1 of 1 
   

Rate This Article
1 2 3 4 5 6 7 8 9 10





Copyright © 2000-2006, Milano Interactive
Web Hosting provided by Portal 360 Web Hosting
Open Circle