diff options
Diffstat (limited to 'projects.html')
-rw-r--r-- | projects.html | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/projects.html b/projects.html new file mode 100644 index 0000000..3af34b7 --- /dev/null +++ b/projects.html @@ -0,0 +1,106 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="utf-8"> + <meta http-equiv="x-ua-compatible" content="ie=edge"> + <title>Projects by Navan</title> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="icon" sizes="192x192" href="https://material.io/static/images/simple-lp/favicons/components-192x192.png"> + <link rel="shortcut icon" href="https://material.io/static/images/simple-lp/favicons/components-72x72.png"> + + <link rel="stylesheet" + href="https://cdnjs.cloudflare.com/ajax/libs/normalize/6.0.0/normalize.min.css"> + <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet"> + <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> + <link rel="stylesheet" + href="https://unpkg.com/material-components-web@0.9.1/dist/material-components-web.min.css"> + <link rel="stylesheet" href="app.css"> +</head> +<body class="mdc-typography"> + <header id="shrine-header" + class="mdc-toolbar mdc-toolbar--fixed mdc-theme--text-primary-on-background"> + <div class="mdc-toolbar__row"> + <section class="mdc-toolbar__section mdc-toolbar__section--align-start"> + <a id="shrine-nav-icon" class="material-icons mdc-ripple-surface" href="#" + aria-label="Click to show the navigation menu" + aria-controls="shrine-nav-menu" + data-mdc-auto-init="MDCRipple" + data-mdc-ripple-is-unbounded>menu</a> + <h1 id="shrine-logo" class="mdc-toolbar__title"><span>Navan Chauhan</span></h1> + </section> + </div> + </header> + + <aside id="shrine-nav-menu" class="mdc-temporary-drawer" data-mdc-auto-init="MDCTemporaryDrawer"> + <nav class="mdc-temporary-drawer__drawer"> + <header class="mdc-temporary-drawer__header"></header> + <nav class="mdc-temporary-drawer__content mdc-list"> + <a class="mdc-list-item" href="https://navanchauhan.github.io">Home</a> + <a class="mdc-list-item" href="#">Projects</a> + <a class="mdc-list-item" href="#">Contact Me</a> + </nav> + </nav> + </aside> + + <main id="shrine-products" class="mdc-layout-grid mdc-toolbar-fixed-adjust"> + <div class="mdc-layout-grid__cell"> + <div class="mdc-card shrine-product-card"> + <section class="mdc-card__primary"> + <span class="mdc-card__title shrine-product-card__price">Mjölnir</span> + </section> + <img class="shrine-product-card__image" width="240" height="240" alt="Sunglasses" src="assets/sunnies.png"> + </div> + </div> + <div class="mdc-layout-grid__cell"> + <div class="mdc-card shrine-product-card"> + <section class="mdc-card__primary"> + <span class="mdc-card__title shrine-product-card__price">GYGB</span> + </section> + <img class="shrine-product-card__image" width="240" height="240" alt="Shoes" src="assets/chucks.png"> + </div> + </div> + <div class="mdc-layout-grid__cell"> + <div class="mdc-card shrine-product-card"> + <section class="mdc-card__primary"> + <span class="mdc-card__title shrine-product-card__price">John Doe</span> + </section> + <img class="shrine-product-card__image" width="240" height="240" alt="Beach ball" src="assets/beachball.png"> + </div> + </div> + <div class="mdc-layout-grid__cell"> + <div class="mdc-card shrine-product-card"> + <section class="mdc-card__primary"> + <span class="mdc-card__title shrine-product-card__price">Pwned</span> + </section> + <img class="shrine-product-card__image" width="240" height="240" alt="Backpack" src="assets/backpack.png"> + </div> + </div> + <div class="mdc-layout-grid__cell"> + <div class="mdc-card shrine-product-card"> + <section class="mdc-card__primary"> + <span class="mdc-card__title shrine-product-card__price">Kamikaze</span> + </section> + <img class="shrine-product-card__image" width="240" height="240" alt="Clock" src="assets/clock.png"> + </div> + </div> + <div class="mdc-layout-grid__cell"> + <div class="mdc-card shrine-product-card"> + <section class="mdc-card__primary"> + <span class="mdc-card__title shrine-product-card__price">Shodown</span> + </section> + <img class="shrine-product-card__image" width="240" height="240" alt="Fish bowl" src="assets/fishbowl.png"> + </div> + </div> + </main> + <script + src="https://unpkg.com/material-components-web@0.9.1/dist/material-components-web.min.js"> + </script> + <script> + mdc.autoInit() + document.getElementById('shrine-nav-icon').addEventListener('click', function(evt) { + evt.preventDefault(); + document.getElementById('shrine-nav-menu').MDCTemporaryDrawer.open = true; + }); + </script> +</body> +</html> |