An open API service indexing awesome lists of open source software.

https://github.com/hackthacker/html-shorth-notations-efficient-coding

A collection of shorthand notations for generating repetitive HTML elements with sequentially numbered identifiers. These shorthand notations are designed to speed up the coding process and improve productivity. Includes examples for commonly used patterns such as divs, lists, tables, forms, headers, footers, and more.
https://github.com/hackthacker/html-shorth-notations-efficient-coding

Last synced: about 2 months ago
JSON representation

A collection of shorthand notations for generating repetitive HTML elements with sequentially numbered identifiers. These shorthand notations are designed to speed up the coding process and improve productivity. Includes examples for commonly used patterns such as divs, lists, tables, forms, headers, footers, and more.

Awesome Lists containing this project

README

          

# HTML-Shorth-Notations-Efficient-Coding

To download the PDF cheatsheet, click [here](https://github.com/hackThacker/HTML-Shorth-Notations-Efficient-Coding/blob/main/cheatsheet.pdf).

1. ```markdown
div.box$*4>span.item$*3
```
**Generates four `

` elements with class names `.box1` through `.box4`, each containing three `` elements with class names `.item1` through `.item3`.**

2. ```markdown
ul.list$*3>li.item$*5
```
**Creates three unordered lists (`