02-18-2006, 06:18 AM
Here is a little tutorial that I have made for beginners at HTML so here it is:
EDIT: I MADE A NEW ONE on March 2, 2007 Here it is.
<html>
(starts the HTML document)
<body bgcolor="colorhere">
(Creates the backgorund color.)
<body background="blank.jpg">
(Creates a background image.)
<!----This is a comment-----!>
(The code above creates a comment)
<body text="color">
(Creates the text color)
<head>
(starts the head.)
<title>Your title here</title>
(Creates the title in the blue bar at the top ( Color pending on the color of your computer screen.)
</head>
(ends the header section.)
<h1>-</h6>
(Creates a size font. h1 is the biggest, h6 is the smallest)
<form>
(Starts a form)
<input type="text" name="textt" value="Text Here">
(Creates a text box
<input type="password" name="pass" value="password">
(Creates a password feild)
<textarea>Text Here</textarea>
(Creates a text area)
<input type="submit" name="sub" value="Submit!">
(Creates a submit button)
<input type="reset" name="res" value="reset!">
(Creates a reset box.)
<font color="colorhere">Text Here</font>
(creates a font color)
<img src="img.jpg">
(Creates an image)
<a href="url">Hyperlink</a>
(Creates a hyper link)
<a href="url"><img src="img.jpg"></a>
(Creates a button)
<a href="url" target="_blank">Text Here</a>
(Creates a pop-up window)
Here you go
-CP
EDIT: I MADE A NEW ONE on March 2, 2007 Here it is.
Code:
<html>
(starts the HTML document)
<body bgcolor="colorhere">
(Creates the backgorund color.)
<body background="blank.jpg">
(Creates a background image.)
<!----This is a comment-----!>
(The code above creates a comment)
<body text="color">
(Creates the text color)
<head>
(starts the head.)
<title>Your title here</title>
(Creates the title in the blue bar at the top ( Color pending on the color of your computer screen.)
</head>
(ends the header section.)
<h1>-</h6>
(Creates a size font. h1 is the biggest, h6 is the smallest)
<form>
(Starts a form)
<input type="text" name="textt" value="Text Here">
(Creates a text box
<input type="password" name="pass" value="password">
(Creates a password feild)
<textarea>Text Here</textarea>
(Creates a text area)
<input type="submit" name="sub" value="Submit!">
(Creates a submit button)
<input type="reset" name="res" value="reset!">
(Creates a reset box.)
<font color="colorhere">Text Here</font>
(creates a font color)
<img src="img.jpg">
(Creates an image)
<a href="url">Hyperlink</a>
(Creates a hyper link)
<a href="url"><img src="img.jpg"></a>
(Creates a button)
<a href="url" target="_blank">Text Here</a>
(Creates a pop-up window)
Here you go
-CP