-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
60 lines (57 loc) · 3.42 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lucien Mensah - About</title>
<meta name="description" content="website description" />
<meta name="keywords" content="website keywords, website keywords" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!-- modernizr enables HTML5 elements and feature detects -->
<script type="text/javascript" src="js/modernizr-1.5.min.js"></script>
</head>
<body>
<div id="main">
<header>
<div id="logo"><h1>LUCIENDMENSAH</h1></div>
<nav>
<ul class="lavaLampWithImage" id="lava_menu">
<li><a href="index.html">home</a></li>
<li class="current"><a href="about.html">about me</a></li>
<li><a href="portfolio.html">my portfolio</a></li>
<li><a href="originalresume.html" target="_blank" rel="noopener noreferrer">resume</a></li>
<li><a href="blog.html">blog</a></li>
</ul>
</nav>
</header>
<div id="site_content">
<div id="fullcontent">
<h1><center>About Me</center></h1>
<p>I am a Computational Linguistics Masters student at Tulane University, in my final year. I love to read, develop connections, and learn languages. I'm currently working on achieving spoken fluency in Twi (native comprehension) and Japanese (intermediate)!</p>
<p>Being a first-generation college student has inspired me to ensure equitable and adequate representation for all communities. I am guided by the experience of my social work regarding the LGBTQ+ community, in leadership positions on campus and volunteering at home, and I understand the necessity for technology to be accountable. Accessibility and accountability is a significant focus in both of my Graduate Assistantships and in my current projects.</p>
<p>I have experience with Python, Pandas, NumPy, Matplotlib, web development, teaching, and fostering community growth.</p>
</div>
</div>
<footer>
<a href="mailto:luciendmensah@gmail.com"> <img src="images/githubgmail.png" alt="gmail, sends email to lucien" width="40" height="40"></a>
<a href="https://github.com/lucienmensah" target="_blank" rel="noopener noreferrer"> <img src="images/githublogo.png" alt="github, opens a new tab" width="40" height="40"></a>
<a href="https://www.linkedin.com/in/lucien-mensah" target="_blank" rel="noopener noreferrer"> <img src="images/linkedinlogo.png" alt="linkedin, opens a new tab" width="40" height="40"></a>
<p><a href="index.html">home</a> | <a href="about.html">about me</a> | <a href="portfolio.html">my portfolio</a> | <a href="originalresume.html" target="_blank" rel="noopener noreferrer">resume</a> | <a href="blog.html">blog</a></p>
<p style="font-size:8px">© <a href="http://www.css3templates.co.uk">2012 my portfolio two.</p>
</footer>
</div>
<!-- javascript at the bottom for fast page loading -->
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.easing.min.js"></script>
<script type="text/javascript" src="js/jquery.lavalamp.min.js"></script>
<script type="text/javascript" src="js/image_fade.js"></script>
<script type="text/javascript">
$(function() {
$("#lava_menu").lavaLamp({
fx: "backout",
speed: 700
});
});
</script>
</body>
</html>