![]() |
![]() |
|
|
|
|
|
|
|
|
|
|
|
|
| It is helpful to understand HTML code. Its sometimes quicker
to'cut and paste' or adjust code then to use any other method.
THIS IS THE HTML CODE THAT CREATES THE WEBPAGE BELOW>
HTML = Hypertext Markup Language.
The HEAD controls how the page is seen on the internet.
The BODY is where the content and structure of the web page exists. |
<!DOCTYPE HTML PUBLIC "-//W3C//DTD
HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>How to create web pages, from basic to beyond...</title> <style type="text/css"><!--.style1 {color: #0000FF}--></style> </head> <body> <p>BASIC WEB PAGE - (html) </p> <p>This page has been saved as 'basic'.</p> <p>The page's 'Title' is - How to create web pages, from basic to beyond... </p> <p>Text has been used to form the basic information for this web page and then an image has been added. </p> <p><a href="basic2.htm">Click here</a> after you have read the rest of the page, which list the basic parts that have been used so far.</p> <p>You will be then shown how to develop a web page, stage by stage...</p> </body></html> |