-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (66 loc) · 4.29 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
<!doctype html>
<html lang="en">
<head>
<!-- Boostrap required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="styles/style.css">
<title>Rafael M. Mateo</title>
<link rel="icon" href="images/dna_icon.png">
</head>
<body>
<!--Bootstrap navbar -->
<nav class="navbar navbar-expand-sm fixed-top navbar-dark bg-dark">
<a class="navbar-brand" href="index.html">Rafael M. Mateo Lee</a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#navbarMenu">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarMenu">
<ul class="navbar-nav ml-auto">
<!-- Website pages -->
<li class="nav-item">
<a href="CV.html" class="nav-link">CV</a>
</li>
<li class="nav-item">
<a href="Programming.html" class="nav-link">Programming</a>
</li>
<!-- Social media icons -->
<li class="nav-item">
<a href="https://twitter.com/drowned__god" class="nav-link"><img id="logo" src="https://image.flaticon.com/icons/png/512/23/23931.png" height="24"></a>
</li>
<li class="nav-item">
<a href="https://www.linkedin.com/in/rafael-m-mateo-lee-6731841a4/" class="nav-link"><img src="https://www.iconfinder.com/data/icons/popular-social-media-flat/48/Popular_Social_Media-22-512.png" height="34"></a>
</li>
</div>
</nav>
<!-- Content -->
<div class="container">
<div class="row">
<div class="col-md-6 col-sm-12 align-self-center">
<img id="profile_picture" src="https://user-images.githubusercontent.com/62458624/93011442-592ede80-f564-11ea-8f1b-f2ca1127def6.png" class="img-fluid" alt="Rafael M. Mateo Lee">
</div>
<div class="col-md-6 col-sm-12 align-self-center" style="top: 16px">
<div class="text-center">
<h1>Rafael M. Mateo Lee</h1>
</div>
<div class="text-center">
<h4>Options Trader - Equities</h4>
</div>
<div class="text-justify">
<p>I enjoy tackling complex problems with programming. Recently completed Harvard University’s <a href="https://online-learning.harvard.edu/course/cs50-introduction-computer-science?delta=0">CS50</a> (Computer Science); now enrolled in <a href="https://online-learning.harvard.edu/course/cs50s-web-programming-python-and-javascript">CS50W</a> (Web Programming with Python and JavaScript). Also love analyzing the equity market and trading them with options it's one of my many passions.
<p>
</div>
</div>
</div>
</div>
<footer>
<p class="footer"><small>Designed and implemented by Rafael M. Mateo Lee</small>
</footer>
<!-- Optional JavaScript. jQuery first, then Popper.js, then Bootstrap JS. Used for Navbar button -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>