How To Make and Edit a Website Using HTML in Notepad (With Video)

How To Make and Edit a Website Using HTML in Notepad - Cover Photo

In Era of the Internet, Many People Would Like to Create Their Own Website
It's true that website is the best digital platform ever to build your online presence. It empowers you to connect, communicate, and interact with the world. And the most important element is that you have full control over what you share with the world.

A website is your digital kingdom which consists of a collection of web pages organized in a proper way. Visitors can navigate through them and find your valuable content.

A web page (webpage) is a document written in one or more of web languages, while a web browser such as Firefox, Google Chrome, or Apple's Safari can translate those languages into displayable content that we all see such as text, links, images, and other multimedia.

HTML (Hypertext Markup Language) is the key element for creating web pages.

Now, in this blog post, you'll get to know:

Basic HTML Codes to Create Simple Webpage

HTML elements are names surrounded by angle brackets and represented by tags that usually come in pairs start tag & end tag ( <p> ..... </p> ).

The following code block contains the basic HTML elements to create a web page:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>

Here's the short definition for each of them:
HTML Start Tag Description HTML End Tag
<!DOCTYPE html> declaration defines this document to be HTML5
<html> the root element of an HTML page </html>
<head> contains meta information about the document </head>
<title> specifies a title for the document </title>
<body> contains the visible page content </body>
<h1> defines a large heading </h1>
<p> defines a paragraph </p>

How to Create and Edit a Web Page Using Notepad (Video)



Advantages of Using Notepad as Web Page Maker

Web pages can be created and modified by using professional HTML editors and other web development software. Yet, using Notepad to create and edit webpage has the following advantages:
  • Using a simple text editor is a good way to learn HTML
  • In case you don't have a professional HTML editor installed on your PC or Laptop, Notepad is automatically installed on all Windows computers.
  • In case you don't have an internet connection and can't reach an online HTML editor
  • In case your field is not web development but you want to make a slight edit on HTML file
Share on Google Plus

About Hesham Hamdy

Digital Marketer, Web Developer, Blogger and Copywriter with 6+ years of experience. Driven by his passion for digital knowledge, and inspired by top influencers on the web. Hesham is keen on developing even more skills in diverse digital fields and deliver this knowledge to all interested individuals.
    Blogger Comment
    Facebook Comment

0 comments: