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/