-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
78 lines (63 loc) · 3.35 KB
/
about.html
File metadata and controls
78 lines (63 loc) · 3.35 KB
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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Misha Cadet | About</title>
<link rel="icon" href="assets/images/wave.png">
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
</head>
<body>
<!-- Adding a Navbar -->
<header>
<nav class="navbar navbar-expand-lg navbar-default navbar-light "> <!-- bg-light-->
<a class="navbar-brand" href="index.html">Welcome!</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link active-page" href="about.html">About Me <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio.html">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<!-- <div id="pic-bg">
<picture autoplay muted loop id="myVideo">
<source src="assets/images/bg.jpg" type="img">
</picture>
</div> -->
<div id="main-container" class="container">
<div class="row">
<div class="col-sm-12 col-xs-12 col-md-12 col-lg-16 col-xl-16">
<section class="main-section">
<h1>About Misha Cadet</h1>
<img src="assets/images/misha2.jpg" class="auth-image" alt="Misha Cadet">
<h2> Bridging Public Health & Technology </h2>
<p> Misha Cadet is a Web Developer, Health Educator and Public Health Policy Specialist from Chicago, IL. She received her Bachelor's in Public Health from the University of Illinois in Champaign, IL and completed a Master's in Public Health Policy. Misha currently freelances in web development and works managing clinical placements and teaching sexual health education for a university hospital.
<p> Misha likes dancing, traveling, spending time with her friends and family, crossfit, playing softball, summer beach volleyball and exploring new restaurants with her friends in her spare time.
<!-- <p> Misha is currently spending most of her 2018 summer learning how to make cool websites, because she's a big ol' nerd that loves to learn :) -->
</section>
</div>
</div>
</div>
<footer>
<div class="container">
<!-- Follow Me: -->
Copyright CadetCode ©
</div>
</footer>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
</body>
</html>