In Era of the Internet, Many People Would Like to Create Their Own WebsiteIt'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
- How to Create and Edit a Web Page Using Notepad (Video)
- Advantages of Using Notepad as Web Page Maker
- How to Create and Edit a Web Page Using Notepad (Video)
- Advantages of Using Notepad as Web Page Maker
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:
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>
<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
0 comments:
Post a Comment