-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
134 lines (113 loc) · 4.59 KB
/
about.html
File metadata and controls
134 lines (113 loc) · 4.59 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>about me</title>
<link rel="icon" href="img/simple_logo.png" type="image/x-icon">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="ionicons/css/ionicons.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Nunito&display=swap" rel="stylesheet">
<!-- main css -->
<link href="css/style.css" rel="stylesheet">
<!-- modernizr -->
<script src="js/modernizr.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div class="pre-container">
<div class="spinner">
<div class="double-bounce1"></div>
<div class="double-bounce2"></div>
</div>
</div>
</div>
<!-- end Preloader -->
<div class="container-fluid">
<!-- box-header -->
<header class="box-header">
<div class="box-logo">
<a href="index.html"><img src="img/logo_screenshot.png" width="250" alt="Logo"></a>
</div>
<!-- box-nav -->
<a class="box-primary-nav-trigger" href="#0">
<span class="box-menu-text">Menu</span><span class="box-menu-icon"></span>
</a>
</header>
<!-- end box-header -->
<!-- nav -->
<nav>
<ul class="box-primary-nav">
<li><a href="index.html">home</a></li>
<li><a href="img/Erica_Luzzi_CV.pdf" target="_blank">CV</a></li>
<li><a href="portfolio.html">projects</a></li>
<li><a href="poetry.html">poetry</a></li>
<li><a href="about.html">about me</a></li>
</ul>
</nav>
<!-- end nav -->
</div>
<!-- box about section -->
<section class="box-about">
<div class="container main-container clearfix">
<div class="col-md-12">
<div class="col-md-4">
<div class="h-30"></div>
<div class="h-30"></div>
<img src="img/headshot1.jpg"; height="100%"; width="100%"; alt="headshot";>
</div>
<div class="col-md-8">
<h2 style="font-family:nunito; size:15px;">About Me</h2> <br>
<p> I have an interdisciplinary background in cognitive and brain sciences and computer science. I am currently a student in the Masters in Design Engineering program, part of the Harvard Graduate School of Design and Harvard John A. Paulson School of Engineering and Applied Sciences. My core interests are human behavior change, social connection and empathy, and how these are mediated through technology. In my current program, I am focusing on the related ethics of data, influence, and digital identity.<p></br>
<p>
</div>
</div>
</div>
<!-- footer -->
<footer>
<div class="container-fluid">
<ul class="col-sm-8">
<p class="copyright">© 2019 Erica Luzzi</p>
<li class="col-sm-1">
<a href="https://github.com/eluzzi5">
<img src="img/github.png">
</a>
</li>
<li class="col-sm-1">
<a href="mailto:eluzzi15@gmail.com">
<img src="img/mail.jpg">
</a>
</li>
<li class="col-sm-1">
<a href="https://www.linkedin.com/in/erica-luzzi-65659213b/">
<img src="img/linkedin.png">
</a>
</li>
</ul>
</div>
</footer>
<!-- end footer -->
<!-- back to top -->
<a href="#0" class="cd-top"><i class="ion-android-arrow-up"></i></a>
<!-- end back to top -->
<!-- jQuery -->
<script src="js/jquery-2.1.1.js"></script>
<!-- plugins -->
<script src="js/bootstrap.min.js"></script>
<script src="js/menu.js"></script>
<script src="js/animated-headline.js"></script>
<script src="js/isotope.pkgd.min.js"></script>
<!-- custom script -->
<script src="js/custom.js"></script>
</body>
</html>