Used to create a new git repository
git init
| /* -- DOM utility functions -- */ | |
| // Create a DOM element with contents, class names and id | |
| /* | |
| * @params | |
| * elem {string} @required [name of tag] | |
| * content {any} [can be anything usually string content or another DOM element - optional] | |
| * classes {string[]} [list of classname to give to the element - optional] | |
| * id {string} [id to give to the elemnt - optional] | |
| /* Importing poppins font from google fonts */ | |
| @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,400&display=swap'); | |
| /* Box sizing rules */ | |
| *, | |
| *::before, | |
| *::after { | |
| box-sizing: border-box; | |
| } |