Skip to main content

Create a Simple Webpage Using Notepad

Webpages. We use them every day. But how hard is it to make a webpage? You can make a simple webpage easily with Notepad 


Open Notepad. Click File->Save As. Choose all files from the file type menu. Save your file as file.html You can replace file with anything. Usually the main page of a website is index.html Now you can start coding. Don't worry, it's not hard!
Create a Simple Webpage Using Notepad Step 1.jpg
 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 look like
Create a Simple Webpage Using Notepad Step 2.jpgThese end things like a bold font.

 The first tag of a webpage is usually the html. You can put this at the top of your Notepad file.
Create a Simple Webpage Using Notepad Step 3.jpg   







The next tag is the tag. Between the and tags are the title tag, which tells the browser what to put at the top of the window, and meta tags, which tell search engines like Google what the site is about.
Create a Simple Webpage Using Notepad Step 4.jpg

On the next line after your tag, put a
Create a Simple Webpage Using Notepad Step 5.jpg

Now end your head by typing 
Create a Simple Webpage Using Notepad Step 6.jpg

Next in our website comes the body tag. Type Please note that not all colors are supported on all browsers. (for instance, dark grey probably wouldn't be supported on most browsers)
Create a Simple Webpage Using Notepad Step 7.jpg

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

Welcome to my site! Make sure you remember the end tag, or your whole webpage will be in giant!Create a Simple Webpage Using Notepad Step 8.jpg

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! Softwareforfree rules!
If you want a new line in your site, use the tag, or break tag.
Create a Simple Webpage Using Notepad Step 9.jpg

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!
Create a Simple Webpage Using Notepad Step 10.jpg

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: dog The src (source) is what the picture is called. The width and height are the width and height of the picture in pixels.
Create a Simple Webpage Using Notepad Step 11.jpg

Almost done! You want your visitors to be able to see more than just one page. To create links, use: Another page 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.
Create a Simple Webpage Using Notepad Step 12.jpg

To finish up, you need to end your body with , and entire webpage with
Create a Simple Webpage Using Notepad Step 13.jpg

Save your work and open the .html file in your favourite web browser. Congratulations! You just made a webpage
Create a Simple Webpage Using Notepad Step 14.jpg

If you want to put your website on the web, see How to Publish a Web Site
Create a Simple Webpage Using Notepad Step 15.jpg

Comments

Popular posts from this blog

The Android Best OS Android OREO 8.0 Top 10 AMAZING Features

Welcome Back Guy, I'm here with a new video, in this video I'm going to show you Top 10 Features of Android 8.0 Oreo Don't forget to Subscribe My Channel Which is Guy Perfect & Press the Bell Icon for More Exciting Video Coming Soon!! Like this video And Don't forget to share it with others. Upload by Guy Perfect.The Link is Down below. If you like this post 1+ this

Creating A Game With Notepad

You probably won't know what all of this means right now, but I'll explain it soon. Introduction Did you know that the simple Notepad program on your computer is actually a very powerful programming tool? That's right, and it is also very easy to learn. In this article I'm going to show you how to make a simple game using only the Notepad program and a programming language called "Batch." Batch is a language that runs primarily out of your Windows command prompt. Now, it's not even close to being the most powerful programming language out there, but it still let's you do enough to be extremely useful to know (at least for anyone in the computer field). Not only is it useful, but it can also be used to create amazing text-based games ! What is a text-based game you ask? It's a game (a very simple one) in which the user interacts through the use of text and choice-making.You will learn h...

What is HTTP (Hyper Text Transfer Protocol)

Hypertext is text that links to other information. By clicking on a link in a hypertext document, a user can quickly jump to different content. Though hypertext is usually associated with Web pages, the technology has been around since the 1960s. Software programs that include dictionaries and encyclopedias have long used hypertext in their definitions so that readers can quickly find out more about specific words or topics. Apple Computer's HyperCard program also used hypertext, which allowed users to create multi-linked databases. Today, the Web is where hypertext reigns, where nearly every page includes links to other pages and both text and images can be used as links to more content. If you like this post 1+ this