-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 2.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- I see you are the curious type ;) -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image/ico" href="favicon.ico"/>
<title>💡 Rodrigo Morgado</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<div class="container">
<div class="info-container">
<div>
<h1 class="title">Rodrigo Morgado</h1>
<p class="subtitle">aka rmorth</p>
</div>
<div class="short-description">
Driven software engineer with a passion for lower level languages.
<br><br>
Currently contributing to the camera's firmware over at <a target="_blank" href="https://www.getnexar.com/">Nexar</a>.
</div>
<div class="links">
<div class="link">
<img src="img/github.png" width="24" height="24" alt="GitHub">
<a target="_blank" href="https://www.github.com/rmorth">GitHub</a>
</div>
<div class="link">
<img src="img/linkedin.png" width="24" height="24" alt="Twitter">
<a target="_blank" href="https://www.linkedin.com/in/rodrigo-morgado-995819218/">LinkedIn</a>
</div>
<div class="link">
<img src="img/email.png" width="24" height="24" alt="LinkedIn">
<a href="mailto:[email protected]">Contact</a>
</div>
</div>
</div>
<div class="projects-container">
<div class="project-links">
<div class="project">
<a target="_blank" href="https://www.github.com/rmorth/nvidia-uploader">NVIDIA Uploader</a>
<p class="project-desc">Brief experiment to help upload GeForce Experience clips.</p>
<p class="project-tags">Python</p>
</div>
<div class="project">
<a target="_blank" href="https://www.github.com/rmorth/ai-space-optimization">AI Space Optimization</a>
<p class="project-desc">Coursework for developing an algorithm to optimize material used.</p>
<p class="project-tags">Java • Genetic Algorithms</p>
</div>
</div>
</div>
</div>
</body>
</html>