Skip to main content

Posts

Showing posts with the label Java Script

HTML , CSS, Java Script Cheat Sheet

  HTML Cheat Sheet Tag/Concept Description Syntax Example <!DOCTYPE> Declaration of document type <!DOCTYPE html> <!DOCTYPE html> <html> Root element of an HTML document <html>...</html> <html> <head>...</head> <body>...</body> </html> <head> Metadata about the document <head>...</head> <head> <title>My Title</title> </head> <title> Title of the document in browser <title>...</title> <title>Page Title</title> <meta> Metadata information (charset, viewport, etc.) <meta> <meta charset="UTF-8"> <link> Link external resources (CSS, icons) ...