Showing posts with label Create a web page. Show all posts
Showing posts with label Create a web page. Show all posts

Friday, May 27, 2011

Create an HTML page

There are many ways to create web pages. But I'll recommend new learners to use simply a notepad editor. It'll help you to learn all HTML basics more effectively...

Learn HTML quickly in 5 easy steps for creating your first web page, that will work on you browser.

Step1: Open notepad editor

Step2:
copy this code and paste into text editor

<html>
<head><title>First Web Page</title></head>
<body>Hello World! This is my first web page.</body>
</html>

Step3: Save file: set save as type to <all file types>, and <file name> to myfirstpage.html or my firstpage.htm

Step4: close notepad text editor

Step5: double click on the myfirstpage.html or myfirstpage.htm, it will be opened into browser.

It works :)