-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (78 loc) · 2.72 KB
/
index.html
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!doctype html>
<html>
<head>
<title>Mukund Mauji</title>
<meta charset="UTF-8" />
<meta name="author" content="Mukund Mauji" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.classless.min.css" />
<style>
main {
margin-top: 3em;
}
footer {
margin-top: 1em;
text-align: center;
font-size: 85%;
}
.big-name {
margin-top: 1em;
font-size: 175%;
}
</style>
</head>
<body>
<header style="display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between">
<!-- <div class="big-name" style="color: red">MUKUND MAUJI</div> -->
<div class="big-name">MUKUND MAUJI</div>
<!-- <div -->
<!-- style=" -->
<!-- display: flex; -->
<!-- border: 1px #e2cd13 dashed; -->
<!-- /* padding: 0px 10px; */ -->
<!-- flex-grow: 0.3; -->
<!-- flex-direction: row; -->
<!-- flex-wrap: nowrap; -->
<!-- align-items: center; -->
<!-- justify-content: space-between; -->
<!-- " -->
<!-- > -->
<!-- <div class="big-name">ABOUT</div> -->
<!-- <div class="big-name">PROJECTS</div> -->
<!-- </div> -->
</header>
<main>
<p>Right now:</p>
<ul>
<li>working on this website</li>
<li>chasing excellence</li>
</ul>
<p>Previously:</p>
<ul>
<li>
participated in the Computational Neuroscience course (2024-01) at
<a target="_blank" href="https://academy.neuromatch.io/courses">Neuromatch Academy</a>
</li>
<li>software engineer at <a target="_blank" href="https://www.search.brave.com">Brave Search</a></li>
<li>firmware engineer at <a target="_blank" href="https://mosaicmfg.com">Mosaic Manufacturing</a></li>
<li>
B.A.Sc in <a target="_blank" href="https://www.queensu.ca/mathstat/mthe">Mathematics and Engineering</a> at
Queen’s University
</li>
</ul>
</main>
<footer>
<hr />
<p>
page source: <a target="_blank" href=" https://github.com/maujim/maujim.github.io/ ">maujim/maujim.github.io</a>
</p>
<p>Get in touch via email: <a target="_blank" href="mailto:[email protected]">[email protected]</a></p>
<div>Other places you can find me:</div>
<div>
<a target="_blank" href="https://github.com/maujim">GitHub</a> |
<a target="_blank" href="https://linkedin.com/in/mukund-mauji/">LinkedIn</a>
</div>
</footer>
</body>
</html>