-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
176 lines (155 loc) · 8.86 KB
/
index.html
File metadata and controls
176 lines (155 loc) · 8.86 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
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html>
<head>
<title>Martin Muruthi</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible">
<meta name="description" content="">
<meta name="viewport" content="width=device-width initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Jockey+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Acme&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/1651ec3f63.js" crossorigin="anonymous"></script>
<link rel="stylesheet" type="text/css" href="CSS/main.css">
<!--The href attribute will be changed by javascript based on user's theme selection-->
<link id="theme-style" rel="stylesheet" type="text/css" href="">
</head>
<body>
<!--Introductory section with my avatar and a little about what I do-->
<section class="sec-1">
<div class="main-container">
<div class="name-wrapper">
<h2>My Name Is Martin Muruthi</h2>
</div>
<!--intro wrapper will wrap the navigation bar, 2 about sections, one with an image and text using css grid-->
<div class="intro-wrapper">
<div class="nav-wrapper">
<div class="dots-wrapper">
<div id="dot-1" class="browser-dot"></div>
<div id="dot-2" class="browser-dot"></div>
<div id="dot-3" class="browser-dot"></div>
</div>
<ul id="navigation">
<li><a href="#">About</a></li>
<li><a href="#contact-form">Contacts</a></li>
</ul>
</div>
<!--Add avatar and theme changing dots-->
<div class="left-column">
<img src="images/muruthi_avatar.jpg" id="profile_pic">
<h5 style="text-align: center; line-height: 0;">Choose Theme </h5>
<div id="theme-options-wrapper">
<div data-mode = "light" id="light-mode" class="theme-dot"></div>
<div data-mode = "blue" id="blue-mode" class="theme-dot"></div>
<div data-mode = "green" id="green-mode" class="theme-dot"></div>
<div data-mode = "purple" id="purple-mode" class="theme-dot"></div>
</div>
<p id="settings-note">*We'll keep this saved up for you 😊*</p>
</div>
<!--Add two shadows with an about section on the inside-->
<div class="right-column">
<div id="preview-shadow">
<div id="preview">
<h3>What I Do</h3>
<p>I like thinking about stuff, designing them on paper then coding them into meaningful products</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="sec-2">
<div class="main-container">
<!--an about section with fun facts about me-->
<div class="about-wrapper">
<div class="about-me">
<h4>Fun Facts about me 😜</h4>
<p>I have a degree in actuarial science, which gives me a strong mathematical and analytical foundation</p>
<p>I love technology and I have always had a big interest in software engineering and data science. Coding helps me think and enables me reimagine my creativity.</p>
<hr>
<h4>Top skills</h4>
<p>Besides data science, I have been focussing on web applications development with Django and React:<a target="blank" href="Docs/muruthi_resume.pdf">Download Resume</a></p>
<!--My skills-->
<div id="skills">
<ul>
<li>Python</li>
<li>Django</li>
<li>Javascript</li>
<li>Postgress</li>
</ul>
<ul>
<li>React</li>
<li>Tensor Flow</li>
<li>Keras</li>
<li>Jupiter Notebooks</li>
</ul>
</div>
</div>
<!--Add a social media image and github and twitter link-->
<div class="social-links">
<img id="social_img" src="images/social_media.jpg">
<h3>Follow me On Twitter and Github</h3>
<a target="blank" class="social-media-link" href="https://twitter.com/SparklingMartin"><i class="fab fa-twitter fa-lg"></i> @muruthimartin</a>
<a target="blank" class="social-media-link" href="https://github.com/muruthimartin"><i class="fab fa-github fa-lg"></i> @muruthimartin</a>
</div>
</div>
</div>
</section>
<!--add my recent projects-->
<section class="sec-1">
<div class="main-container">
<h3 style="text-align: center;">My Recent Projects</h3>
<div class="project-wrapper">
<div>
<div class="project">
<img class="thumbnail" src="images/image_1.jpg">
<div class="project-preview">
<h6 class="project-title">CS50 finance app with Flask</h6>
<p class="project-intro">This is a cool app that lets users "buy" and "sell" stock. The project utilizes MVC design system, API's and SQL.</p>
<a target="blank" href="https://github.com/muruthimartin/CS50-Finance-App.git">View Project</a>
</div>
</div>
</div>
<div>
<div class="project">
<img class="thumbnail" src="images/image_2.jpg">
<div class="project-preview">
<h6 class="project-title">Polls App with Django.</h6>
<p class="project-intro">This is a cool beginner Django app that seeks to demonstate core concepts in django. The project utilizes the MVC design system and has some bootstrap too.</p>
<a target="blank" href="https://github.com/muruthimartin/polls_app.git">View Project</a>
</div>
</div>
</div>
<div>
<div class="project">
<img class="thumbnail" src="images/image_3.jpg">
<div class="project-preview">
<h6 class="project-title">Color Game with Javascript.</h6>
<p class="project-intro">This is an interesting game that seeks to demonstrate the power on Javascript in manipulating the DOM as well as utilizing core concepts in ES6.</p>
<a target="blank" href="https://github.com/muruthimartin/color-game.git">View project</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Add details to contact me -->
<section class="sec-2">
<div class="main-container">
<h3 style="text-align: center;">Hit Me Up!</h3>
<form id="contact-form" action="POST" data-netlify="true">
<label>Name</label>
<input class="input-field" type="text" name="name">
<label>Subject</label>
<input class="input-field" type="text" name="subject"></input>
<label>Email</label>
<input class="input-field" type="email" name="email"></input>
<label>Message</label>
<textarea class="input-field" name="message"></textarea>
<div class="input-field recaptcha" data-netlify-recaptcha="true"></div>
<input id="submit-btn" type="submit" value="Send Message">
</form>
</div>
</section>
<script type="text/javascript" src="script.js"></script>
</body>
</html>