-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
83 lines (80 loc) · 5.38 KB
/
about.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
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="resources/css/index.css" />
<script src="resources/js/index.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="index.html">Michael Conner</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item active">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">Projects</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="projects.html">All Projects</a>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="composer.html">Music AI</a>
<a class="dropdown-item" href="cms.html">CMS API</a>
<a class="dropdown-item" href="chess.html">Chess AI</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link" href="resume.html">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
<h1 class="projectTitle">About Me</h1>
<div class="container">
<div style="max-height:20em" class="row">
<div style="max-height:20em; width:auto;" class="col"><img class="abtImg" src="resources/images/kolya.PNG"/></div>
<div class="col">
<h3 id="introText">
This is me and my best friend Kolya. No, I can't pronounce it right either.
<br/> <br/>When we used to live close to each other we frequently would go roller skating, rock climbing, or just hang out playing games.
</h3>
</div>
</div>
<div class="row" style="margin-top:4%; max-height:20em;">
<div class="col" style="max-height:20em; width:auto;"><img class="abtImg" src="resources/images/rock.JPG"/></div>
<div class="col"><h3>Before I came to Milwaukee, I used to live in CA, KS, PA, OH, and NJ in that order starting from NJ.
In California I lived in the cities of Martiniez, Yorba Linda, Anaheim, and Fullerton.
</h3></div>
<div class="col" style="max-height:20em; width:auto;"><img class="abtImg" src="resources/images/fire.PNG"/></div>
</div>
<div style="margin-top:4%;" class="row">
<div class="col">
<h3>
Before I moved to Milwaukee from California, I used to work at Disneyland!
If you can't tell what I did there, just know that I am in this picture.
</h3>
</div>
<div class="col"><img id="troopImg" class="abtImg" src="resources/images/troop.jpg"/></div>
<div class="row" style="margin-top:4%; margin-bottom:4%; max-height:20em;">
<div class="col" style="max-height:20em; width:auto;"><img class="abtImg" src="resources/images/drink1.jpg"/></div>
<div class="col"><h3>In my free time, I like to get drinks, hang out and play games, or hit the gym. However, currently, it is mostly taken up with work and school.
</h3></div>
<div class="col" style="max-height:20em; width:auto;"><img class="abtImg" src="resources/images/die2.jpg"/></div>
</div>
</div>
<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://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>