Create a Simple Webpage Using Notepad

Webpages. We use them every day. But how hard is it to make a webpage? In this article, you will find out how to create a simple HTML webpage using Notepad.

Steps

Webpage Help

Doc:Simple Webpage,Webpage with HTML,HTML Cheat Sheet

Creating Your Own Webpage

  1. Open Notepad. Notepad is automatically installed on all Windows computers. You can find it in the Start Menu. Once you are in Notepad, click "File" and then click "Save As" in the dropdown menu. Choose "All Files" in the file type menu. Save your file as an HTML file. Usually, the main page of a website is known as "index.html" in order to be able to access everything on the website from that single page.
  2. HTML (Hypertext Markup Language) uses tags. Tags are basically some text inside of .
    You will use a variety of tags to create your webpage. There are also "end tags" which end a line of code. An example is of an end tag is:.
    These end things like a bold font or a paragraph.
  3. The first tag of a webpage is usually: .
    You can put this at the top of your Notepad file.
  4. The next tag is .
    The next tag, , tells the browser what to put at the top of the window, and the optional meta tags, tells search engines like Google what the site is about.
  5. On the next line after your head tag, put a title:
  6. Now end your head by typing
  7. Next in our website comes the tag. Please note that not all colors are supported on all browsers. (for instance, dark grey probably wouldn't be supported on most browsers)
  8. Between the two body tags goes the content of your webpage, what the user sees. Let's start with a header. A header a a section of large text, and is specified in HTML with through , with being the largest. So at the top of your webpage, after the body tag, might be something like Make sure you remember the end tag, or your whole webpage will be in giant!
  9. Another tag that can go in the webpage body is the tag, or paragraph tag. So after your header, you might have . I'm learning how to make a website! wikiHow rules!</p> If you want a new line in your site, use the tag, or break tag.
  10. You probably don't want a webpage that's all plain text. So let's put in some formatting. for bold text, for italics, and for underlining. Remember your end tags!
  11. What really makes a website interesting is pictures. Even with formatting, who wants to look at endless words? Use the tag to do this. But, like the body tag, it needs some extra information. An img tag might look like this: .
    The src (source) is what the picture is called. The width and height are the width and height of the picture in pixels.
  12. Almost done! You want your visitors to be able to see more than just one page. To create links, use: .
    The text in between the tags is what the user clicks on to get to the next page, and the href part is where their click takes them. Using a tags you can let your users move effortlessly around your website.
  13. To finish up, you need to end your body with , and entire webpage with
  14. Save your work, making sure to save the file with '.html' at the end. Open the .html file in your favourite web browser to see how it looks. Congratulations! You just made a webpage.
  15. If you want to put your website on the web, see How to Publish a Website on Your Own Domain



Tips

  • You can find more tags by searching on the web. There are many good sites to help people learn to make websites. W3Schools is very good.
  • Remember your end tags.
  • Always make sure you type <!DOCTYPE html> on the very first line, before your first <HTML> tag. It tells your browser that your webpage is in HTML5.
  • You may change the font by typing <font face="N"></font> on before <html> and after </html>. N is replaced with a font face, e.g. "Verdana".
  • If you would like to use angle brackets on your website, use < and > An and sign is &amp
  • According to HTML Tutorials always name your Web folders and files using all lowercase and without any spaces or punctuation. While Windows allows you to use spaces, many Web hosting providers do not, and you'll save yourself some time and trouble if you name your files and folders well from the beginning.

Related Articles

You may like