├── .gitignore ├── Dockerfile ├── README.md ├── abhimeta.jpeg ├── abhinavexp.html ├── about.html ├── arihant.html ├── arihantmeta.jpeg ├── contact.html ├── index.html ├── kopalexp copy.html ├── kopalexp.html ├── kopometa.jpeg ├── login.html ├── metaintro.jpeg ├── metavid.mp4 ├── project.html ├── register.html ├── style.css └── vid.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MetaGL Profiler 2 | 3 | # 5 SEM Project. -------------------------------------------------------------------------------- /abhimeta.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/abhimeta.jpeg -------------------------------------------------------------------------------- /abhinavexp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/abhinavexp.html -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/about.html -------------------------------------------------------------------------------- /arihant.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/arihant.html -------------------------------------------------------------------------------- /arihantmeta.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/arihantmeta.jpeg -------------------------------------------------------------------------------- /contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/contact.html -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/index.html -------------------------------------------------------------------------------- /kopalexp copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/kopalexp copy.html -------------------------------------------------------------------------------- /kopalexp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/kopalexp.html -------------------------------------------------------------------------------- /kopometa.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/kopometa.jpeg -------------------------------------------------------------------------------- /login.html: -------------------------------------------------------------------------------- 1 |

login

-------------------------------------------------------------------------------- /metaintro.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/metaintro.jpeg -------------------------------------------------------------------------------- /metavid.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/metavid.mp4 -------------------------------------------------------------------------------- /project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/project.html -------------------------------------------------------------------------------- /register.html: -------------------------------------------------------------------------------- 1 |

register

-------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/style.css -------------------------------------------------------------------------------- /vid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vishwakarma-Kopal/MetaGLProfiler-Website/HEAD/vid.html --------------------------------------------------------------------------------