How to Make a Web Page in Microsoft Windows
Microsoft Windows includes default programs, such as Notepad, that you can employ to craft Web pages. Notepad is a text and code editor that you can use to write scripts in any language, including Hyper Text Markup Language, the language of pages on the Internet. You can create a very simple Web page with a few basic HTML codes. Further study of HTML will allow you to make more complex Web pages on computers that use Microsoft Windows.
Instructions
-
-
1
Launch a text editor program such as Notepad, which is included with Microsoft Windows.
-
2
Type HTML code to develop your Web page. For example, the following will produce a very basic page where "Your Title," "Your Text," "Your Image" and "Alternative Text" are stand-ins for your actual page title, text content, image URL and alternative text for the image.
<html>
<head><title>Your Title</title></head>
<body><img src="Your Image" alt="Alternative Text">
<p>Your Text</p>
</body>
</html>
-
-
3
Open the file menu and select "Save As."
-
4
Make sure that the file type box is set to "All Files." Type your file name, followed by ".html" into the Save box. For example, you might type "mywebpage.html".
-
1
Tips & Warnings
You can also use Microsoft Word to create a document and save it as a Web page.