In order to write web pages , you will need to understand the HyperText Markup Language(HTML).
HTML is usually not considered as a programming language but rather a markup language. HTML cannot be compiled by a computer to run as programming language but is interpreted by web browsers like chrome and firefox to display a web page.
A browser is an application program that provides a way to look at and interact with all the information on the World Wide Web which includes Web pages, links, videos and images.
HTML uses structural marker called tags which are used by the web browser to determine how a web page is going to appear on a computer screen.
HTML includes markups that describes the kind of formatting needed to render a web page so that it can be viewable on a computer, tablet, phone or any other screen that acts as a website terminal.
It determines if the text will be bold, whether data should be presented as tables, what image to accompany the data etc.
HTML standards has been set so that there is uniform ways of browsers to interpret web pages. The HTML4 was replaced by the current standard which is HTML5. The first standard which was HTML2.0 was developed in 1993. HTML5 supports multimedia that could have only been a dream by then.
Here we represent a sample web page
<HTML5>
<head>
<title> Hello world!</>
</head>
<body>
<p> Thank you for welcoming me to HTML world!</p>
</body>
</html>
The tag HTML5 indicates that we are using the HTML5 to define components of our page.
Each HTML element has opening and closing angle brackets. Most of the tages will have closing tag with a forward slash after the first bracket.
The web page is defined between the starting HTML tag and the ending HTML tag.
The <head>…….</head> tag defines the header information of the page.
<head> indicates starting point of the header and </head> shows the end of the head element.
<title>…..</title> is an element used to display the title of the page.
The body of the web page is all the elements between <body> and </body> tags. Whatever is between this body tags is what the user that visit the page will see.
Anything between <p> and </p> is treated as a paragraph in the web page.
For a user to access a web page, they have to write it’s uniform resource locator (url) on the address bar of the web browser. An address bar will look like as shown when you first open a browser.

url is the address of a page the user will use to access it from the internet. The addressing of web pages in the internet uses a standard called http protocol such each page address starts with https://……. and the ” …..” should be replaced by the page address.
The web page will not show the tags but only the statements between the <p>..</> tags because they are the only tags between the <body> element. see the diagram below:

Note that the statement between the title tags is the one showing on the title bar of the browser. The web address is not starting with https but showing the path to the location in my computer because it is fetched from my file system in the OS in my computer disk and not from the internet.
Related Topics
- The HTML basics
- Version Control
- Getting started with Git
- Installing git on windows
- Basic Git Configuration
- Python Reserved words
- Installing_git on_windows
- Managing historical files
- Creating a web page
- Getting started with python
- Artificial Intelligence Vocabulary
- sets






