How to write comments in HTML and CSS - Learn HTML front-end programming

preview_player
Показать описание
How to write comments in HTML - Learn HTML front-end programming. In this episode I will show how to create comments in both HTML and CSS. Comments are useful for creating notes for yourself or other people who might be working on your website.

--

mmtuts is a YouTube channel that focuses on teaching beginner and advanced courses in various multimedia related skills.
We plan to make tutorials available on programming, video production, animation, graphic design, and on software such as the Adobe Creative Cloud programs.

HTML and CSS for beginners is a how to series that teaches the HTML and CSS coding language to people who are just starting out learning programming. The course teaches how HTML and CSS can be made easy and teaches "front-end development" which is the visual part of websites. Creating static websites with HTML and CSS is easy and should not be seen as otherwise, which is why we want to explain the language in a easy to understand way for beginners.

If you have suggestions on new courses, or specific lessons within existing courses you would like to see, then feel welcome to submit them in the comment section or in a private message. ALL suggestions will be seen, but not all will be replied to since we get quite a few every day.
Рекомендации по теме
Комментарии
Автор

He did not say this and I hope that everyone has already realized this, but you are able to put anything in comments as the browser will read the opening comment tag, then look for the closing comment tag, then move on. The browser does not need to understand anything in the comment blocks, so the primary purpose of comments in most professional code is to put notes for yourself or for others if other people are going to be reading your code. It means that you do not have to try to understand you code later and other people do not have to spend valuable time understanding someone else's code or coding style. He did say that you could put notes such as "main content" in comments, but I just wanted to make sure that people know you can put literally anything in comments and your code will still be correct and compile correctly.

Awesomekid