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 + + + +
+This is a paragraph
+ +``` + +## Line Break + +```html + +This is the first line.
This is the second line.
| Column 1 | +Column 2 | +
|---|---|
| Row 1, Column 1 | +Row 1, Column 2 | +
| Row 2, Column 1 | +Row 2, Column 2 | +
+
+```
+
+## Iframes
+
+### Youtube Video
+
+```html
+
+
+
+```
+
+### External Webpage
+
+```html
+
+
+
+```
+
+## Audio
+
+```html
+
+
+
+```
+
+## Video
+
+```html
+
+
+
+```
+
+
+# Learn More about HTML from here:
+
+https://www.w3schools.com/html/