Quick HTML Reference
HTML HTML tags are not case sensitive Recommendations · Always close all tags , including open ones like <br> · Always Use Lowercase Attributes · Always put Attribute Values inside a quotation mark · <!DOCTYPE html> syntax for html5 <html> </html> <head> </head> // contains meta data, which is not displayed <meta charset = “utf-8” > // meta is data about data and comes in key value pairs <style> </ style> <link> </link> <title> </title> <body> </body> Text <!-- This is a comment --> <p> </p> standard paragraph // it has an attribute title= “visible on mouse hover” tag . which shows mouse...