make a new text document called hi.htm and exit it with notepad the first line should say
this tag starts the webpage the next line should be
this tag is the beginning of the header the next line should be
this line tells the browser that the title of the page is hello world the next line is
this is the end of the header the next line is
this tells the browser it's the beginning of the body the next line is
that tells the browser to display
the next line is
this closes the body and finally
this is the end of the webpage
PHP:
<html>
PHP:
<head>
PHP:
<title>hello world</title>
PHP:
</head>
PHP:
<body>
PHP:
<H3>HI!!!!!!!</H3>
Code:
HI!!!!!!!
PHP:
</body>
PHP:
</html>