|

If
you choose to do your web page in html, there are certain basic things
you will need to know. Html stands for "hypertext markup
language," which is the language used to make up web
documents. It is a language in its own right, just like English
or Spanish, except that instead of being spoken aloud, it is the
language that computers use to talk to each other. In html you
use "tags" to place images or writing where you want it to
appear on your page. Tags begin with the < symbol, and end
with the > symbol.
In
html, the basic coding on your page looks like this:
<html>
<head>
<title> Your page title
goes here</title>
</head>
<body>
Everything else on your page goes in the space between
these two tags
</body>
</html>
There
are also codes for doing all kinds of basic stuff. There is a
code for anything you want to do. You'll find lots of
them on this site.
|