-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (59 loc) · 2.6 KB
/
index.html
File metadata and controls
65 lines (59 loc) · 2.6 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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Basic Portfolio - Maura Fortino</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="container">
<header>
<div class="title">
<h1><a class="home" href="#">Maura Fortino</a></h1>
<nav>
<a href="#" class="active">About Me</a>
<span>|</span>
<a href="portfolio.html">Portfolio</a>
<span>|</span>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<section class="clearfix">
<div>
<h2>About Me</h2>
</div>
<hr>
<div>
<img src="assets/images/profilepic.jpg" alt="a photo of me" class="profile-pic">
</div>
<p>
Hi I'm Maura - I'm 24 years old. I was born in Philadelphia and grew up playing soccer starting from the age of four
and played all through out college at Capital Univeristy in Columbus, OH. I studied Communications with an
emphasis in Public Relations and soon after graduating in 2016 learned that this was not the career for me.
I wish I would have figured that out in college.
</p>
<p>
After moving home from Columbus, I started self teaching myself how to code while looking for a job as a way to gain some more skills
and then realized that I liked it enough to possibly make a career out of it. Currently,I work in fundraising at a
local university, but am looking to make a career change into the tech field. Outside of coding, my hobbies include:
<ul>
<li>reading - last year I read 52 books in 52 weeks</li>
<li>learning new languages - I am almost fluent in Spanish and I'm learning Italian</li>
<li>travelling - I want to travel to all 50 states before I turn 50</li>
</ul>
</p>
<p>
If anyone has any book recommendations, please send them my way - or if you're in need of some, let me know
I love sharing my favorite reads with people. I also just got back into playing PokémonGo so if anyone wants to be friends
on that - dm me on slack!
</p>
</section>
</div>
<footer>
<span class="copyright">Copyright ©</span>
</footer>
</body>
</html>