Skip to content

Commit 22b6fee

Browse files
Mastering lists in html (#12)
* Creating Unordered Lists Creating Unordered Lists Co-Authored-By: Mohammad Moiz Ali <[email protected]> * Creating Ordered Lists Creating Ordered Lists Co-Authored-By: Mohammad Moiz Ali <[email protected]> * Nesting Lists: Nesting Lists: Co-Authored-By: Mohammad Moiz Ali <[email protected]> * [UPDATE README] [UPDATE README] add Mastering Lists in HTML in readme Co-Authored-By: Mohammad Moiz Ali <[email protected]> --------- Co-authored-by: Mohammad Moiz Ali <[email protected]>
1 parent 5a240d6 commit 22b6fee

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

Diff for: Mastering Lists in HTML/index.html

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<ul>
2+
<li>Home</li>
3+
<li>HTML</li>
4+
<li>Contact</li>
5+
</ul>
6+
7+
<ol>
8+
<li>Home</li>
9+
<li>HTML</li>
10+
<li>Contact</li>
11+
</ol>
12+
13+
<ul>
14+
<li>Home</li>
15+
<li>HTML</li>
16+
<li>
17+
Problems
18+
<ol>
19+
<li>Leet Code</li>
20+
<li>HackerRank</li>
21+
</ol>
22+
</li>
23+
<li>Contact</li>
24+
</ul>

Diff for: README.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# HTML
2+
23
Welcome to the HTML Repository! This repository contains a collection of code snippets and examples organized into a roadmap format to help you learn and navigate through HTML development concepts and topics.
34

45
## Repository Structure
6+
57
The repository is structured into different directories based on the Post Title. Each directory represents a specific topic or concept in HTML. Here's an overview of the repository structure:
68

79
```
@@ -13,8 +15,11 @@ The repository is structured into different directories based on the Post Title.
1315
| ├── images/
1416
| ├── Mastering Image Tag - Enhancing Web Pages with Visual Content/images/Mastering Image Tag - Enhancing Web Pages with Visual Content.jpg
1517
| ├── index.html
18+
├── Mastering Lists in HTML
19+
| ├── index.html
1620
└── README.md
1721
```
22+
1823
## Getting Started
1924

2025
To get started with this repository, simply clone or download the repository to your local machine. You can use the following command to clone the repository:

0 commit comments

Comments
 (0)