From 0254653ee41cf5d90f3caa8f27545a6297ce72e0 Mon Sep 17 00:00:00 2001 From: Vardaan Aggarwal <98269336+VardaanAggarwal@users.noreply.github.com> Date: Tue, 4 Apr 2023 12:56:48 +0530 Subject: [PATCH] Create HTML-CheatSheet.md --- CheatSheets/HTML-CheatSheet.md | 193 +++++++++++++++++++++++++++++++++ 1 file changed, 193 insertions(+) create mode 100644 CheatSheets/HTML-CheatSheet.md diff --git a/CheatSheets/HTML-CheatSheet.md b/CheatSheets/HTML-CheatSheet.md new file mode 100644 index 0000000..34ed86a --- /dev/null +++ b/CheatSheets/HTML-CheatSheet.md @@ -0,0 +1,193 @@ +# HTML CheatSheet + +## Basic Structure + +```html + + + + + Title of the document + + + Content goes here + + + +``` + +## Headings + +```html + +

Heading 1

+

Heading 2

+

Heading 3

+

Heading 4

+
Heading 5
+
Heading 6
+ +``` + +## Paragraphs + +```html + +

This is a paragraph

+ +``` + +## Line Break + +```html + +

This is the first line.
This is the second line.

+ +``` + +## Horizontal Line + +```html + +
+ +``` + +## Links + +```html + +Link text + +``` + +## Lists + +### Unordered List + +```html + + + +``` + +### Ordered List + +```html + +
    +
  1. List item 1
  2. +
  3. List item 2
  4. +
+ +``` + +## Tables + +```html + + + + + + + + + + + + + + + + + + +
Column 1Column 2
Row 1, Column 1Row 1, Column 2
Row 2, Column 1Row 2, Column 2
+ +``` + +## Forms + +```html + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+ +``` + +## Images + +```html + +Image description + +``` + +## Iframes + +### Youtube Video + +```html + + + +``` + +### External Webpage + +```html + + + +``` + +## Audio + +```html + + + +``` + +## Video + +```html + + + +``` + + +# Learn More about HTML from here: + +https://www.w3schools.com/html/