- 1
What is <!> This Simbul meaning please tell me
3 ответов
+ 1
We use it in 4 places.
In html, the first usage is to declare our programing language:
<!DOCTYPE html>
The second usage is to add comments:
<!-- Comment content goes here -->
Comments can not be rendered by the browsers, and it's just for you yourself, to help you recognize your codes.
The third usage is commonly in CSS, which we set !important, to declare that this code must be performed; it's usually because we coded something before, that has been against our new one. So we set !important to prevent unexpected events, and say this code is more important than the previous one.
We use it in Java and other languages, as C#, to say this is not the thing we want.
Example:
2 != 3
This means 2 is not equal with 3.
- 2
It means Exclamation mark.
HTML uses the Exclamation mark to start comments.
Example:
<!-- Your comment goes here -->
- 2
Answer bro