├── .gitignore ├── .idea └── vcs.xml ├── LICENSE ├── README.md ├── favicon.ico ├── index.html └── main.css /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmufc7/Your-First-PR/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmufc7/Your-First-PR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmufc7/Your-First-PR/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmufc7/Your-First-PR/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmufc7/Your-First-PR/HEAD/index.html -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikhilmufc7/Your-First-PR/HEAD/main.css --------------------------------------------------------------------------------