-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (45 loc) · 1.67 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
<!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>Activity 1: Basic HTML Bio</title>
</head>
<body>
<h1>Student Bio</h1>
<h2>Maura Fortino</h2>
<img src="profilepic.jpg" alt="photo of me">
<p>Hey my name is Maura. I am 24 years old and was born and raised in Philadelphia.
I have two sisters, both older, and up until recently I lived with my mom and dad.
I began coding in 2017 as a way to make myself more marketable and decided I wanted
to make it into a career.
</p>
<p>Before learning how to code, I went to school at Capital University.
A small school in Columbus, Ohio. I studied communications and was a member
of the Univesity's Women's soccer team. I really enjoyed my experience, but wish I head
chose a different major.
</p>
<h2>Contact Info</h2>
<ul>
<li>
<strong>Email:</strong>
<a href="mailto:[email protected]">
</a>
</li>
<li>
<strong>Github:</strong>
<a href="https://github.com/maurafortino">
Maura Fortino
</a>
</li>
<li>
<strong>Portfolio:</strong>
<a href="#">
coming soon
</a>
</li>
</ul>
</body>
</html>