-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout_me.html
More file actions
57 lines (56 loc) · 2.57 KB
/
about_me.html
File metadata and controls
57 lines (56 loc) · 2.57 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link href='https://fonts.googleapis.com/css?family=Cormorant Garamond' rel='stylesheet'>
<link rel="stylesheet" href="style.css">
<title>Ellen</title>
<meta charset="UTF-8">
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<div class="col-2 text-center">
<a href="home.html">
<button type="button" class="btn">Home</button>
</a>
</div>
<div class="col-2 text-center">
<a href="about_me.html">
<button type="button" class="btn">About Me</button>
</a>
</div>
<div class="col-2 text-center">
<a href="art_work.html">
<button type="button" class="btn">Art Work</button>
</a>
</div>
<div class="col-2 text-center">
<a href="projects.html">
<button type="button" class="btn">Projects</button>
</a>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 text-center headers">
<p>About Me</p>
</div>
<div class="col-12 text-center">
<img src="mila.png" alt="About Me Image" width="200">
</div>
<div class="col-12 text-center p-3 paragraphs">
<p>I grew up in Springfield Missouri with my three sisters.
I am completing my senior year at Colorado College as a computer science major.
I am interested in Software Development and Web Design.
I have expericence in Java, Python, JavaScript, HTML, and CSS.
I also enjoy art and love to learn new ways to express my creativity.
In my free time, I love to get outdoors and play with my dogs.
</p>
</div>
</div>
</div>
</body>
</html>