I am learning HTML and using this repository to practice HTML basics like elements, links, lists, and anchors. CSS and JavaScript may be added in the future.
- HTML elements
- Comments
- Attributes
- Anchor tags
- Anchoring to same page elements
- Anchoring to different files
- Lists and nested lists
- HTML5 DTD (Document Type Definition)
- Semantic HTML tags (
header,nav,main,article,aside,footer) - Text structure elements (Headings
h1–h6, Paragraphp) - Text formatting tags (
em,strong,mark,b,i,ins,del,s,code,q) - Tables (
table,tr,th,td,thead,tbody,tfoot.)
| Tool/Technology | Documentation |
|---|---|
| HTML5 | MDN Web Docs |
| VS Code | Official Docs |
| Live Server | VS Code Extension |
| Web Browser | Chrome DevTools |
learn-HTML
├─ README.md
├─ assignments/
│ ├─ README.md
│ └─ assignment-01/
│ └─ index.html
| └─ assignment-02/
│ └─ webpage.html
├─ screenshots/
├─ docs/
| ├─ README.md
│ └─ assignment-01.md
| └─ assignment-02.md
├─ practice/
| ├─ README.md
│ ├─ formatting-tags.html
│ ├─ lists.html
│ └─ tables.html
- README Markdown to introduce repository
- Use formatting tags to clone repo README
- Practicing Emmet to create a HTML only personal webpage
Detailed explanations and notes are maintained in the docs folder.