-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (141 loc) · 4.15 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Balamurali M</title>
<link
rel="stylesheet"
href="css/master.css"
type="text/css"
media="screen"
charset="utf-8"
/>
<link
rel="stylesheet"
href="css/desktop.css"
type="text/css"
media="screen"
charset="utf-8"
/>
<link
rel="stylesheet"
href="icomoon/style.css"
type="text/css"
media="screen"
charset="utf-8"
/>
<link
rel="stylesheet"
href="css/icomoon-font.css"
type="text/css"
media="screen"
charset="utf-8"
/>
</head>
<body>
<main>
<header class="banner">
<div class="onimage">
<h1>Balamurali M</h1>
<p>
Open source developer, CTO of
<a href="https://www.oreon.xyz" target="_blank">Oreon</a> and
Sysadmin of his own laptop 😉
</p>
</div>
</header>
<article>
<h2>About me</h2>
<p>
I am a Computer Science Graduate and developer. Been coding for
approximately 6 years. Over the past few months, I've developed
expertise on Embedded systems and Backend development.
</p>
<section>
<h2>Languages</h2>
<dl>
<dt><h4>Python</h4></dt>
<dd>
Currently my most preferred language. Used in projects on video
processing, neural nets, web scraping, Backend APIs etc.
</dd>
<dt><h4>C</h4></dt>
<dd>
Very familiar. I've done a lot of firmware development on esp32
with the esp-IDF framework
</dd>
<dt><h4>HTML/CSS</h4></dt>
<dd>
Know enough to make a
<a href="index.html">decent responsive website</a> without
bootstrap with help from Google.
</dd>
<dt><h4>JavaScript</h4></dt>
<dd>
Unfamiliar with ES2015 features. I know basic things in client
side & node.js.
</dd>
<dt><h4>Java</h4></dt>
<dd>
Done a lot of it during college lab hours. Learned OOP principles
here. No major projects.
</dd>
</dl>
</section>
<section>
<h2>Contact me</h2>
<p>
Wanna send me an email? Put your name & email here and I'll get
back to you.
</p>
<form
action="https://formspree.io/balamurali05@outlook.com"
method="POST"
>
<label
>Name
<input id="name" type="text" name="name" />
</label>
<label
>Email
<input id="email" type="email" name="_replyto" />
</label>
<label
>Comment
<textarea name="comment" rows="5" cols="28"></textarea>
</label>
<input type="submit" value="Send" />
</form>
</section>
</article>
</main>
<footer>
<!-- social media links -->
<a
class="social"
href="https://gitlab.com/kawaiideku"
title="gitlab where i keep my LAB code lol"
>
<span class="icon-gitlab"></span>
</a>
<a class="social" href="https://github.com/balamurali27">
<span class="icon-github"></span>
</a>
<a class="social" href="http://linkedin.com/in/balamurali-murali">
<span class="icon-linkedin"></span>
</a>
<a class="social" href="https://dev.to/balamurali27">
<span class="icon-dev-dot-to"></span>
</a>
<br />
<br />
<a title="Download my resume" class="red_button" href="assets/resume.pdf">
Resume <span class="icon-download"></span>
</a>
<p>Made with ❤️ using semantic html, vanilla css & js.</p>
<p><small>psst..try reloading the page</small></p>
</footer>
<script src="scripts/colors.js" charset="utf-8"></script>
</body>
</html>