-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (49 loc) · 2.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Michael Byrd</title>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-bet.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_CHTML'></script>
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="personalStyleSheet.css">
<link rel="stylesheet" href="sidebar.css">
</head>
<body>
<header>
<nav class = "nav navbar navbar-expand-sm row">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="mathematics.html">Mathematics</a></li>
<li><a href="computer_science.html">Computer Science</a></li>
</ul>
</nav>
<div class="container-fluid row">
<div class="jumbotron">
<h1 style = "color:white">Michael C.R. Byrd Jr.</h1>
<h3>Student - UNC Wilmington</h3>
<h3>Mathematics | Computer Science</h3>
</div>
</div>
</header>
<main>
<h4> <b>About Me</b> </h4>
<p>I am a student at UNCW studying Mathematics with a minor in Computer Science.
My mathematical interests include: Modern Algebra, Number Theory, and Algebraic Geometry.
My computer science interests include Design and Analysis of Algorithms and
Computational Complexity Theory.
</p>
</main>
<footer class = "footer">
<div class = "container-fluid">
<div class = "row center color rounded">
<a href = "https://github.com/michael-byrd" target = "_blank">GitHub</a> |
<a href = "mailto:[email protected]">Email</a>
</div>
</div>
</footer>
</body>
</html>