html hello world

cscash241

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