About HTML
Firstly, what is HTML? It stands for Hyper Text Markup Language. Markup language is a set of markup tags. The tags are then used to describe the content on the page. HTML documents are also web pages.
About tags
Tags are keywords which are surrounded by angle brackets. There would usually be two types of tags, like <b> and <b/>. The tag with a slash is the end tag or closing tag
This is how HTML coding looks like...
There are many different versions of HTML, the latest version is HTML5.
Web browsers read HTML documents and display them as web pages.
A web browser does not display HTML tags, but uses the tags to display the content on the web page.
A web browser can only display a HTML page if it knows the HTML type and version used.
About CSS
What does CSS stand for? Cascading Style Sheets. What is it used for? CSS defines how HTML elements are displayed.
There are three different ways in which CSS can be used: 1. Internal Style Sheet 2. Inline styles 3. External Style Sheet.
I will only talk about External Style Sheet.
What is an External Style Sheet? It is used to change the appearance and layout of multiple pages at once. And is located in the same file as a particular HTML file.
A CSS file looks something like this...
A CSS file looks something like this...
Any page links to a CSS using the <link> tag and is placed inside the head section.

