├── About.html ├── Event_Resource.js ├── Offer.html ├── Profile_Style.py ├── README.md ├── Result.html ├── Service.html └── Tutorial_Offer.js /About.html: -------------------------------------------------------------------------------- 1 |

Hello, World!

-------------------------------------------------------------------------------- /Event_Resource.js: -------------------------------------------------------------------------------- 1 | console.log('Random JS commit'); -------------------------------------------------------------------------------- /Offer.html: -------------------------------------------------------------------------------- 1 | Sample HTML

This is a commit.

-------------------------------------------------------------------------------- /Profile_Style.py: -------------------------------------------------------------------------------- 1 | # Sample Python commit 2 | x = 42 3 | print(x) -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Welcome to my repository! -------------------------------------------------------------------------------- /Result.html: -------------------------------------------------------------------------------- 1 | Sample HTML

This is a commit.

-------------------------------------------------------------------------------- /Service.html: -------------------------------------------------------------------------------- 1 |

Hello, World!

-------------------------------------------------------------------------------- /Tutorial_Offer.js: -------------------------------------------------------------------------------- 1 | function foo() { return Math.random(); } console.log(foo()); --------------------------------------------------------------------------------