HTML stands for Hypertext Markup Language and it is a standard markup language for
creating web pages and web applications.
To create an HTML page, there are a few steps. Firstly, you need to open any sort of
text editor, it could be Notepad++, Notepad, Sublime Text, or even Visual Studio Code.
A web page is fundamentally made up of three constituents. The first is HTML, the
second is CSS or Cascading Style Sheets and the third is JavaScript.
HTML will only give the structure of the web page; it has nothing to do with styling.
CSS is completely responsible for how beautiful your web page looks. JavaScript allows
you to make your page much more dynamic. For example, if you click on a button and
your posts are being submitted, that's all being done by JavaScript.
The <p> tag stands for paragraph and a paragraph is basically what it looks like, and
it normally contains random text or paragraphs of your web page. Here is an example:
You can simply add an image with the <img> tag.
All you have to do is specify the source of the image. Here is an example:
<img src="beautiful-pokemon.jpg" alt="A picture of a
beautiful pokemon">
Make sure to save the image in the same folder as your HTML file.
There are two types of lists, one is an ordered list. So, ordered lists are numbered lists
and you can put in list items like this:
1. Item 1
2. Item 2
3. Item 3
4. Item 4
List items can be anything that you are listing out, such as your favorite dogs or favorite
chocolate. Let's put an <h2> to list some of my favorite heroes in Dota 2.
1. Favorite heroes in Dota 2
Hero 1
Hero 2
Hero 3
Hero 4
creating web pages and web applications.
To create an HTML page, there are a few steps. Firstly, you need to open any sort of
text editor, it could be Notepad++, Notepad, Sublime Text, or even Visual Studio Code.
A web page is fundamentally made up of three constituents. The first is HTML, the
second is CSS or Cascading Style Sheets and the third is JavaScript.
HTML will only give the structure of the web page; it has nothing to do with styling.
CSS is completely responsible for how beautiful your web page looks. JavaScript allows
you to make your page much more dynamic. For example, if you click on a button and
your posts are being submitted, that's all being done by JavaScript.
The <p> tag stands for paragraph and a paragraph is basically what it looks like, and
it normally contains random text or paragraphs of your web page. Here is an example:
You can simply add an image with the <img> tag.
All you have to do is specify the source of the image. Here is an example:
<img src="beautiful-pokemon.jpg" alt="A picture of a
beautiful pokemon">
Make sure to save the image in the same folder as your HTML file.
There are two types of lists, one is an ordered list. So, ordered lists are numbered lists
and you can put in list items like this:
1. Item 1
2. Item 2
3. Item 3
4. Item 4
List items can be anything that you are listing out, such as your favorite dogs or favorite
chocolate. Let's put an <h2> to list some of my favorite heroes in Dota 2.
1. Favorite heroes in Dota 2
Hero 1
Hero 2
Hero 3
Hero 4