how to comment
<!-- this is how to comment -->Escape Sequence in HTML
| Code | Symbol | Description |
|
| " | Quotation Mark |
|
| & | Ampersand |
|
| > | Greater than |
|
| < | Less than |
|
| © | Copyright |
|
| ® | Registered trademark |
|
| Nonbreaking space | |
|
| ¼ | Fraction of one fourth |
|
| ½ | Fraction of one half |
note: adds space that won’t break in any screen size.
“ when line fill with words the next word goes to next line, in case we want some words to always be together or in same line we use   for space ”
HTML doc Structure
<!DOCTYPE html> <!-- tells that this is html document -->
<html lang="en"> <!-- "browser/search engine” this document’s body is english -->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>title of Document</title>
</head>
<body>
body of Document, actual content to be displayed by browser.
</body>
</html>