forked from Ada-C12/personal-portfolio-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
38 lines (37 loc) · 1.29 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
<!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>About Me</title>
<link href="https://fonts.googleapis.com/css?family=Amatic+SC&display=swap" rel="stylesheet">
<link href="stylesheets/styles.css" rel="stylesheet">
<link href="stylesheets/about_style.css" rel="stylesheet">
</head>
<body>
<main class="container">
<header class="item">
<nav>
<a href="index.html">home</a>
<a href="portfolio.html">portfolio</a>
<a href="hobby-blog.html">interests</a>
<a href="mailto:[email protected]">contact</a>
</nav>
</header>
<h1>A Bit About Me</h1>
<div id="meat">
<article id="columns">
<p id="who">I am a student at Seattle's <a id="ada" href="http://www.adadevelopersacademy.org">Ada Developers Academy</a>, getting ready to launch as a full-stack junior web developer.
</p>
<img id="jan_pic" src="images/IMG_2617.JPG" alt="Jan pic"/>
<p id="more">Ruby on Rails, HTML/CSS, JavaScript, Agile and CS Fundamentals are among the tools I am learning.
</p>
</article>
</div>
<footer>
©2019 Janice Huang
</footer>
</main>
</body>
</html>