+5 votes
286 views
How to make an HTML Web page in Notepad

in HTML5 / CSS3 by (551k points)
reopened | 286 views

1 Answer

+3 votes
Best answer

1. How to create a web page in Notepad
2. See website structure
3. How to validate web page

Since 1993, something began that would completely change the way of our day to day and that is that in that year the Mosaic browser was launched giving rise to what we know today as web pages . Because we say that this changes our life, it is simple since today we find more than 1,100 million web pages with all kinds of information, designs, structures, languages ​​and more..

Logically there are professional, intermediate and other amateur websites, but all have the purpose of providing some type of information to the people who visit them. That is why if you want to know how to create a web page today TechnoWikis will explain in a simple way how to do it, using Notepad and HTML as a programming language.

HTML (HyperText Markup Language) is a programming language that allows the development of web pages dynamically with great editing capabilities..


1. How to create a web page in Notepad

Step 1

To access the notebook we can use one of the following options:
  • Use the Windows + R keys and execute the “Notepad” command
  • Use Cortana or the Windows 10 search box.

image

Step 2

Once we open the notebook, we will go to the File menu and there we select “Save As” or we can use the Ctrl + Shift + S keys:

+ Shift + S Ctrl + Shift + S

image

Step 3

By clicking there we go to the route where it is to be saved and by default we will see the following:

image

Step 4

As it is the notebook, we can see that the default value is .txt, to edit this, we display the options in the Type field and select “All files”. We assign the name of the file followed by the extension .html:

image

Click on "Save" to apply the changes.


2. See website structure

Step 1

Once we save the file with the extension .hmtl, it is time to proceed with its editing by adding the HTML language tag for the web page. To do this we enter the following:
 <! DOCTYPE html> <html> 

image

Step 2

Now we are going to add the heading tags or “heads”, the objective of these tags is to mark the beginning and end of the title of the page to be created. To do this we will type <head> after the tag "<html>", press the Enter key twice in order to leave a space and then write again </head>:

image

Step 3

The next step will be to add the title of the web page, this title will be located between the "<title> </title>" tags, and goes under the "head" tags as follows. The assigned title will be the one we will see in the browser tab.

image

Step 4

It's time to add the "body" tags which go under the </title> tag and the body's function is to allow the web page code to go between these tags and be visible to the user:
 <body> </body> 

image

Step 5

The next step will be to close the HTML language tag, this is the last tag in the file and it is an HTML tag which indicates the end of the page. For this we will write </html> under the tag "</body>" with the aim of closing the HTML tag:

image

We save the changes using the Ctrl + G keys or from the File / Save menu..

Step 6

It is time to add the elements to the web page in progress, all these elements must go after the "<body>" tag and before the "</body>" tag to be visible.

The first element to add will be the main header of the web page, for this we enter <h1> </h1> between the tags of "<body>" and enter <h1> </h1> digitize the desired text:

image

With this HTML language we can use the tags "<h2> </h2>" to "<h6> </h6>" in order to create the header text with smaller dimensions.

Step 7

Next we will add paragraphs to the web page, the paragraph tags are "<p> </p>" and among them we will enter the text of the site:
 <p> TechnoWikis Internet, the meeting point for professionals and technology lovers </p> 
image
Step 8

To add a paragraph break on the page, we must enter <br> after the closing tag of the line we have added, for example:
 <p> TechnoWikis Internet, the meeting point for professionals and technology lovers </p> <br> <p> A community that will surprise you and help on more than one occasion </p> 
image
Note
We can add an additional "<br>" tag to create a space between the first paragraph and the second.
Step 9

Now it is time to format the text entered as bold, italic, superscript, subscript or underlined, the available tags will be:
 <b> Bold text </b> <i> Italicized text </i> <u> Underlined text </u> <sup> Superscript text </sup> <sub> Subscript text </sub> 
image

3. How to validate web page

Step 1

To validate that everything works as expected we go to the path where the HTML file has been saved, right click on it and select Open with and choose the desired browser:

image

Step 2

By clicking there we will see the structure we have created: image

That's how simple you have learned to create a web page in Notepad (Notepad) with TechnoWikis and thus be able to create a basic website for multiple tasks you may need.


by (3.5m points)
edited

Related questions

+5 votes
1 answer
asked Jun 23, 2019 in HTML5 / CSS3 by backtothefuture (551k points) | 226 views
+3 votes
1 answer
asked Jun 24, 2019 in HTML5 / CSS3 by backtothefuture (551k points) | 6.1k views
+4 votes
1 answer
asked Jun 24, 2019 in HTML5 / CSS3 by backtothefuture (551k points) | 254 views
+4 votes
1 answer
asked Dec 24, 2021 in Guides by backtothefuture (551k points) | 94 views
+3 votes
1 answer
asked Oct 10, 2019 in Internet by backtothefuture (551k points) | 208 views
Sponsored articles cost $40 per post. You can contact us via Feedback
10,633 questions
10,765 answers
510 comments
3 users