HTML Types - Sample Order?

I decided that today - as soon as this question is answered, in fact - I am going to immerse myself in learning HTML.

But, looking online, I noticed that there are many types: HTML, XHTML, HTML5, etc.

So where do I start? In what order should I study them?

And for this first language, where should I study?

+4
source share
9 answers

Personally, I would learn HTML and CSS together.

Learn basic HTML elements (or tags) and how to use classes and identifiers correctly. Then, learn how to style these elements using basic CSS properties.

Once you have a very simple understanding of these two things, just start creating your own little sites. View the source of the installed websites. Always try new things.

+10
source

I always found w3schools to be useful with most things related to websites, including HTML. HTML5 is just a version of HTML, and XHTML is a way of generating HTML that is XML compatible. Start with the basic HTML tags (found on the linked site) and you'll be well on your way.

+4
source

Learn HTML. Once you learn the basics, XML and other markup languages ​​will be easy to pick up.

+1
source

I suggest you start with HTML 4.01. It is well supported by all modern browsers and more forgives any mistakes you might make. After you are well versed in this, you can start looking at HTML5, knowing that it is still under development and is not fully supported by all browsers.

I'm not sure if it is still well regarded, but I was interested in the W3School HTML tutorial when I was studying many years ago.

And XHTML? Especially pedantic types will argue that it is very difficult to properly maintain . I agree with them.

+1
source

Start with HTML 4.01.

HTML 5 is still in draft, which means it is poorly maintained and subject to change.

XHTML 1.0 (the only version of XHTML worth the hard work) is essentially HTML 4.01, with minor syntax variations and a bunch of hoops to go to Internet Explorer.

Opera provides a good introduction to creating web pages .

+1
source

I would start with XHTML.

This is no harder to learn than HTML 4.01. This is a little more rigorous, which could facilitate the study. For example, in XHTML, all start tags must have end tags; it's best for you to learn this simple rule, and then start learning things that you just need to wean later. Use the w3schools.com tutorials, they are simple and straightforward, and they give you places to try and experiment while you study. In the end, this is the best way to find out. Finally, once you are well versed in HTML, I would learn CSS also from w3schools. Finally, I would learn HTML5.

Good luck

+1
source

I agree with all the recommendations to study 4.01 and use the W3Schools tutorial. I also recommend making it a habit to use a validator to validate your HTML. If I remember correctly, one is on validator.w3.org.

0
source

you can look at http://webdeconstructor.com/ this is a web application that allows you to analyze which websites are created on by deconstructing their HTML structure in seconds

0
source

Look at CodeSchool.com or CodeAcademy.com, they are some of the hottest learning sites now, much better than w3schools, in my opinion. You will receive very detailed videos and problems to do everything for you to understand.

0
source

Source: https://habr.com/ru/post/1304607/


All Articles