To create a web page there are two methods
- Create web page using a text editor
Eg: Note Pad
- Create web page using standard package
Eg: Microsoft Front Page, Macromedia Dreamviewer and Adobe Fireworks
Create a web page using a text editor
<html>
<head>
<title>New Page 1</title>
</head>
<body>
My First Web Page
</body>
</html>
Create a web page using standard package
For example, HTML code generated by FrontPage is as follows
<html>
<head>
<meta http-equiv="Content-Language" content="en-us">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>
<body>
<p>My First Web Page</p>
</body>
</html>
Preview of the desired web page on a Web Browser
.
No comments:
Post a Comment