|
HTML
structure
No matter what your page looks
like or what kind of information you want to display,
there are four HTML tags that every page should have
so they follow HTML and WWW standards.
<HTML> Informs the browser
that this document is written in HTML.
<HEAD> Labels the introductory
and heading part of the HTML.
<BODY> Marks where the
body text and infrmation appears.
<ADDRESS> Contains an e-mail
address to get further information about this web page.
Sample HTML created by Dreamweaver
4.0
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html;
charset=euc-kr">
</head>
<body bgcolor="#FFFFFF"
text="#000000">
</body>
</html>
Sample HTML with PHP 4.0
<html>
<head>
<title>PHP Test</title>
<meta http-equiv="Content-Type" content="text/html;
charset=euc-kr">
</head>
<body bgcolor="#FFFFFF"
text="#000000">
<?
echo "This is the test for php"
?>
</body>
</html>
|