forked from cmsc389T-fall21/cmsc389T-web-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (54 loc) · 1.96 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./css/style.css" />
<title>Miguel Lopez</title>
<meta name="About:" content="My custom website for CMSC389T!!">
</head>
<body>
<header class="main-header">
<br>
<h1 class="my-name my-name-large">Miguel Lopez</h1>
</header>
<br><br><br>
<section class="content-section container">
<h2 class="section-header">About Me</h2>
<img class="about-prof-image" src="./assets/profilepic.jpg" height="200" width="200">
<p> My name is Miguel Lopez, I am a senior Computer Science major at the University of Maryland.
</p>
<p>
I made this personal website to tell a little about myself, and practice some skills on making one.
</p>
<p>
My interests include playing baseball, watching movies, playing video games, beekeeping, and table tennis.
</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/mlopez122" 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/miguel~lopez/" 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>