-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevWork.html
More file actions
60 lines (49 loc) · 2.49 KB
/
Copy pathdevWork.html
File metadata and controls
60 lines (49 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chhabi Gupta/Projects</title>
<link href="styles.css" rel="stylesheet">
</head>
<body>
<nav class="navigation container">
<div class="nav-brand">Chhabi Gupta</div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline "><a class="link " href="index.html">Home</a></li>
<li class="list-item-inline"><a class="link link-active" href="devWork.html">Work</a></li>
<li class="list-item-inline"><a class="link" href="blog.html">Blog</a></li>
</ul>
</nav>
<header class="hero">
<h1 class="hero-heading">My Work</h1>
</header>
<ul class="list-non-bullet">
<div class="container container-center">
<li>
<h1 class="work-heading">Take a dive into Retro Bollywood with this Quiz</h1>
<small>June, 2021</small>
<p>A CLI App built with nodeJS.</p>
<a class="link link-primary" href="https://replit.com/@chhabigupta/RetroBollywood?embed=1&output=1#index.js">Live Project</a>
<a class="link link-secondary" href="https://github.com/chhabi22/RetroBollywoodQuiz">View Source on GitHub</a>
</li>
</div>
<div class="container container-center">
<li>
<h1 class="work-heading">Do You Know Me?</h1>
<small>June, 2021</small>
<p>A CLI App built with nodeJS.</p>
<a class="link link-primary" href="https://replit.com/@chhabigupta/RetroBollywood?embed=1&output=1#index.js">Live Project</a>
<a class="link link-secondary" href="https://github.com/chhabi22/DoYouKnowMeQuiz">View Source on GitHub</a>
</li>
</div>
</ul>
<footer class="footer">
<ul class="social-links list-non-bullet list">
<li class="list-item-inline"><a class="link" href="/">Instagram</a></li>
<li class="list-item-inline"><a class="link" href="/">Github</a></li>
<li class="list-item-inline"><a class="link" href="/">Linkedin</a></li>
</ul>
</footer>
</body>
</html>