-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
50 lines (48 loc) · 2.46 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
<!DOCTYPE html>
<html lang="en-US" dir="ltr">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Erika's Art - About</title>
<meta name="description" content="About Erika Estrada" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Spartan&family=Sacramento&display=swap" rel="stylesheet">
<link href="css/style.css" rel="stylesheet" />
<link href="css/about-style.css" rel="stylesheet" />
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon_io/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon_io/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon_io/favicon-16x16.png">
<link rel="manifest" href="images/favicon_io/site.webmanifest">
</head>
<body>
<!-- *************** HEADER *************** -->
<header>
<nav aria-label="Main menu" class="horiz-menu">
<button class="menu-btn">☰</button>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html#gallery">Gallery</a></li>
<li><a href="animation.html">Animation</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<!-- *************** MAIN *************** -->
<div class="flex-wrapper">
<main>
<h1>About</h1>
<section>
<p>Hey, I'm Erika, a resident of California. I've been drawing on and off since I was a teenager, but when I turned 18, an interest in a certain animated movie motivated me to buy a graphics tablet and pursue digital illustration as a regular hobby. I'm primarily interested in drawing people, especially real individuals and human characters I am fond of. I also volunteer to do facepainting at my local supermarket during their annual promotional event.</p>
<p>While I'm an artist by passion, I'm a programmer by trade. Check out that side of me <a href="https://eest12.github.io/" aria-label="Tech portfolio">here</a>.</p>
</section>
</main>
<!-- *************** FOOTER *************** -->
<footer>
<p>© 2021-2023 by Erika Estrada. :-)</p>
</footer>
</div>
</body>
<script src="scripts/menu.js"></script>
</html>