From 8b70347023de3362e76a95f8b0e9f88f257fa7f1 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Sun, 2 Feb 2025 16:36:35 -0700 Subject: first commit --- 01_basic.html | 39 ++++++++++++++++++++++++++++++++++++++ 02_css.html | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 03_sakura.html | 40 +++++++++++++++++++++++++++++++++++++++ index.html | 15 +++++++++++++++ sample_markdown.md | 24 ++++++++++++++++++++++++ 5 files changed, 173 insertions(+) create mode 100644 01_basic.html create mode 100644 02_css.html create mode 100644 03_sakura.html create mode 100644 index.html create mode 100644 sample_markdown.md diff --git a/01_basic.html b/01_basic.html new file mode 100644 index 0000000..aa8936f --- /dev/null +++ b/01_basic.html @@ -0,0 +1,39 @@ + + + + + + HTML Elements Demo + + +

This is Heading 1

+

This is Heading 2

+

This is Heading 3

+

This is Heading 4

+
This is Heading 5
+
This is Heading 6
+ +

This is a paragraph with bold text, italic text, and underlined text.

+

This is a paragraph with a highlighted text and smaller text.

+ +

This is a link to example.com

+ +

Unordered List:

+ + +

Ordered List:

+
    +
  1. First item
  2. +
  3. Second item
  4. +
  5. Third item
  6. +
+ +

Image Example:

+ Placeholder Image +
+ + diff --git a/02_css.html b/02_css.html new file mode 100644 index 0000000..b06581f --- /dev/null +++ b/02_css.html @@ -0,0 +1,55 @@ + + + + + + HTML Elements Demo + + + +

This is Heading 1

+

This is Heading 2

+

This is Heading 3

+

This is Heading 4

+
This is Heading 5
+
This is Heading 6
+ +

This is a paragraph with bold text, italic text, and underlined text.

+

This is a paragraph with a highlighted text and smaller text.

+ +

This is a link to example.com

+ +

Unordered List:

+ + +

Ordered List:

+
    +
  1. First item
  2. +
  3. Second item
  4. +
  5. Third item
  6. +
+ +

Image Example:

+ Placeholder Image +
+ + diff --git a/03_sakura.html b/03_sakura.html new file mode 100644 index 0000000..d8e5c9b --- /dev/null +++ b/03_sakura.html @@ -0,0 +1,40 @@ + + + + + + + HTML Elements Demo + + +

This is Heading 1

+

This is Heading 2

+

This is Heading 3

+

This is Heading 4

+
This is Heading 5
+
This is Heading 6
+ +

This is a paragraph with bold text, italic text, and underlined text.

+

This is a paragraph with a highlighted text and smaller text.

+ +

This is a link to example.com

+ +

Unordered List:

+ + +

Ordered List:

+
    +
  1. First item
  2. +
  3. Second item
  4. +
  5. Third item
  6. +
+ +

Image Example:

+ Placeholder Image +
+ + diff --git a/index.html b/index.html new file mode 100644 index 0000000..eb0553c --- /dev/null +++ b/index.html @@ -0,0 +1,15 @@ + + + + Index + + + +

Index

+
    +
  1. Basic HTML
  2. +
  3. HTML + CSS
  4. +
  5. HTML + Custom Stylesheet
  6. +
+ + diff --git a/sample_markdown.md b/sample_markdown.md new file mode 100644 index 0000000..b6efd26 --- /dev/null +++ b/sample_markdown.md @@ -0,0 +1,24 @@ +# Heading 1 +## Heading 2 +### Heading 3 +#### Heading 4 +##### Heading 5 +###### Heading 6 + +## Ordered Lists +1. Item 1 +2. Item 2 +3. Item 3 + +## Unordered Lists +* Item 1 +* Item 2 +* Item 3 + +Link to [example.com](https://example.com) + +Random image: + +![Random Image](https://picsum.photos/300/300) + +
-- cgit v1.2.3