Mzsmunna
10/15/2019 - 12:26 PM

HTML Tags, Keywords & Functions

1. <noscript> // execute when JavaScript is disabled in browser
2. <!DOCTYPE html>
3. <html></html>
4. <meta charset="utf8">
5. <meta name= "viewport" content="width=device-width">
6. <head></head>
7. <title></title>
8. <body></body>
9. <h1></h1> , <h2></h2> ............... <h6></h6>
10. <section></section>
11. <form></form>
12. <img >
13. <p></p>
14. <abbr></abbr>
15. <aside></aside>
16. <br>
17. <b></b> , <strong></strong>
18. <i></i>
19. <span></span>
20. <ul></ul>
21. <ol></ol>
22. <li></li>
23. <nav></nav>
24. <div></div>
25. <table></table>
26. <thead></thead>
27. <th></th>
28. <tbody><tbody>
29. <tr></tr>
30. <td></td>
31. <input type="text">
32. <input type="number">
33. <input type="email">
34. <input type="textarea">
35. <input type="date">
36. 
37. <link rel="stylesheet" href="style.css">
38. <script src="script.js"></script>
39. <canvas></canvas> // cool 3D animations
40. <em></em>
41. 

Keywords to call/execute a function :
1. onmouseout = yourFunctionName();
2. onmouseover = yourFunctionName();
3. onload = yourFunctionName();
4. onchange = yourFunctionName(this);
5. onsubmit = yourFunctionName();
6.  

## HTML Boiler plate code : 

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title></title>
</head>
<body>
  
</body>
</html>