a couple of typos fixed (#28896)

This commit is contained in:
Potato
2018-10-26 03:13:11 +02:00
committed by Martin Payne
parent ed912092b1
commit 16bdfaa4e4

View File

@ -3,7 +3,7 @@ title: Comments in HTML
---
## Comments in HTML
The comment tag is an element used to leave notes, mostly related to the project or the website. This tag is frequently used to explain something in the code or leave some recommendations about the project. The comment tag also makes it easier for the developer to come back and understand the code he's written at a later stage. Comments can also used for commenting out lines of code for debugging purposes.
The comment tag is an element used to leave notes, mostly related to the project or the website. This tag is frequently used to explain something in the code or leave some recommendations about the project. The comment tag also makes it easier for the developer to come back and understand the code he's written at a later stage. Comments can also be used for commenting out lines of code for debugging purposes.
It is good practice to add comments to your code, especially when working with a team or at a company.
@ -29,9 +29,9 @@ Read more: https://html.com/tags/comment-tag/#ixzz4vtZHu5uR
</html>
```
## Conditional Comments
Conditional Comments defines some HTML tags to be excuted when a certain codition is fullfilled.
Conditional Comments defines some HTML tags to be executed when a certain condition is fulfilled.
Conditional Comments are only recognised by Internet Explorer Version 5 through to Version 9 (IE5 - IE9).
Conditional Comments are only recognized by Internet Explorer Version 5 through to Version 9 (IE5 - IE9).
### Example
```html