-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
104 lines (98 loc) · 3.63 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible"
content="ie=edge" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:400,700" />
<link href="https://fonts.googleapis.com/css?family=Lato:400,700"
rel="stylesheet" />
<link rel="stylesheet"
href="./assets/css/style.css" />
<link rel="shortcut icon"
href="favicon.ico"
type="image/x-icon" />
<title>M Doyle Website</title>
<title>Title</title>
</head>
<body>
<header class="header header row my__container">
<div class="header__container">
<div class="header__mobile">
<i class="fas fa-bars fa-5x"></i>
</div>
<nav class="nav">
<a class="nav__link nav__link--active"
href="./">Home</a>
<a class="nav__link"
href="./views/schedule.html">Schedule</a>
<a class="nav__link"
href="./views/faq.html">FAQ</a>
<a class="nav__link"
href="./views/cv.html">CV</a>
</nav>
</div>
</header>
<main class="flexContainer row my__container">
<section class="bio">
<h1 class="bio__title">Maureen Doyle</h1>
<h2 class="bio__subheader">Personal</h2>
<p class="bio__content">
I was raised in Tewksbury, a town about 20 miles from Boston, MA. I
live in Kentucky and enjoy the beauty of the arts and parks of greater
Cincinnati.
</p>
<h2 class="bio__subheader">Academic</h2>
<p class="bio__content">
I earned my PhD in Scientific Computing and Computational Mathematics
from Stanford University in 2004. My research interests include
recruitment and retention of STEM majors as well as empirical software
engineering.
</p>
<p class="bio__content">
I enjoy teaching programming classes and meeting students when they
are first starting their studies here at NKU, and also enjoy teaching
graduate classes that critically examine evidence-based practices in
software engineering. I worked in industry for almost 20 years and
enjoy sharing my successes, and failures, with students as a
motivation for learning and thinking critically.
</p>
<p class="bio__content">
I am the faculty advisor for the Women In Informatics group and
currently serve as co-chair for National Council for Women In
Technology’s Academic Alliance. I am also co-editor of ACM’s SIGCSE
Bulletin.
</p>
</section>
<aside class="imageCard">
<div class="card">
<img class="imageCard__image"
src="https://inside.nku.edu/content/inside/informatics/departments/computerscience/_jcr_content/par/columncontrol/column-2/slideshow/image1.img.320.medium.jpg/1834674025.jpg"
alt="kappa" />
<p class="cardText">
Department of Computer Science
<br>
College of Informatics, GH 400
<br>
Northern Kentucky University
<br>
Highland Heights, KY 41099
</p>
</div>
</aside>
</main>
<footer class="footer">
<p class="footer__copyright">Copyright © 2019<br><a class="footer__email"
href="#">email@email.com</a></p>
</footer>
<script src="/assets/js/script.js"
type="sc"></script>
<script defer=""
src="https://use.fontawesome.com/releases/v5.7.2/js/all.js"
integrity="sha384-0pzryjIRos8mFBWMzSSZApWtPl/5++eIfzYmTgBBmXYdhvxPc+XcFEk+zJwDgWbP"
crossorigin="anonymous"></script>
</body>
</html>