forked from cmsc389T-spring22/cmsc389T-web-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (67 loc) · 2.24 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./css/style.css" />
<title>Josue Proano</title>
<meta name="description" content="some desc">
</head>
<body>
<header class="main-header">
<br>
<h1 class="my-name my-name-large">Josue Proano</h1>
</header>
<br><br><br>
<section class="content-section container">
<h2 class="section-header">About Me</h2>
<img class="about-prof-image" src="./assets/profile.JPG" height="200">
<p> Welcome to my page!
</p>
<p>
I am currently a senior here at UMD-College Park and plan to graduate this summer (2022). Ideally after I graduate I would like to seek employment as a software engineer.
</p>
<p>
My interests are climbing, videogames, taekwondo, and playing both guitar and drums.
</p>
<p>
Programming Languages Known:
<ul title="Programming Languages Known">
<li>Java</li>
<li>Python</li>
<li>C#,C++,C</li>
<li>Ocaml</li>
<li>Rust</li>
<li>Ruby</li>
<li>Javascript</li>
<li>Swift</li>
</ul>
</p>
<br><br><br><br><br><br><br><br><br><br><br>
</section>
<br>
<footer class="main-footer">
<div class="container main-footer-container">
<ul class="nav footer-nav">
<li>
<!-- YOUR GITHUB -->
<a href="https://github.com/jpsphaxer" target="_blank">
<img class="sm-logo" src="./assets/githubwhite.png" height="50" width="50">
</a>
</li>
<li>
<!-- YOUR LINKEDIN -->
<a href="https://www.linkedin.com/in/josue-proano-81a8b765" target="_blank">
<img class="sm-logo" src="./assets/linkedinwhite.png" height="50" width="50">
</a>
</li>
<li>
<a href="https://www.cs.umd.edu/" target="_blank">
<img src="./assets/umd-logo.png" height="34" width="195">
</a>
</li>
</ul>
</div>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script type="text/javascript" src="./js/script.js"></script>
</body>
</html>