Repository: Youpinadi/cssfizzbuzz
Branch: master
Commit: b506549e7532
Files: 2
Total size: 2.6 KB
Directory structure:
gitextract_5clwwvnf/
├── README.md
└── fizzbuzz.html
================================================
FILE CONTENTS
================================================
================================================
FILE: README.md
================================================
CSS FizzBuzz
===========
CSS implementation of the infamous FizzBuzz. No counter used. You can check the result [here](http://youpinadi.github.com/cssfizzbuzz/fizzbuzz.html)
Reminder of the rules:
For numbers 1 through 100,
* if the number is divisible by 3 print Fizz;
* if the number is divisilbe by 5 print Buzz;
* if the number is divisible by 3 and 5 (15) print FizzBuzz;
* else, print the number.
CSS:
```css
ol
{
list-style-position: inside;
}
li:nth-child(3n),
li:nth-child(5n)
{
list-style: none;
}
li:nth-child(3n):before
{
content: 'Fizz';
}
li:nth-child(5n):after
{
content: 'Buzz';
}
```
HTML:
```html
<ol>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ol>
```
================================================
FILE: fizzbuzz.html
================================================
<style>
ol
{
list-style-position:inside;
}
li:nth-child(3n),
li:nth-child(5n)
{
list-style: none;
}
li:nth-child(3n):before
{
content: 'Fizz';
}
li:nth-child(5n):after
{
content: 'Buzz';
}
</style>
<ol>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ol>
gitextract_5clwwvnf/ ├── README.md └── fizzbuzz.html
Condensed preview — 2 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (3K chars).
[
{
"path": "README.md",
"chars": 1003,
"preview": "CSS FizzBuzz\n===========\n\nCSS implementation of the infamous FizzBuzz. No counter used. You can check the result [here]("
},
{
"path": "fizzbuzz.html",
"chars": 1626,
"preview": "<style>\nol\n{\n list-style-position:inside;\n}\nli:nth-child(3n),\nli:nth-child(5n)\n{\n list-style: none;\n}\nli:nth-child"
}
]
About this extraction
This page contains the full source code of the Youpinadi/cssfizzbuzz GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 2 files (2.6 KB), approximately 1.1k tokens. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.