-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
79 lines (74 loc) · 3.65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html>
<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">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/about.css">
<link rel="icon" href="img/o-for-oslo.svg" type="image/gif" sizes="17x17">
<meta name="theme-color" content="#02150D">
<meta name="msapplication-navbutton-color" content="#02150D">
<meta name="apple-mobile-web-app-status-bar-style" content="#02150D">
<title> About | Aria Oslo </title>
</head>
<body>
<header>
<img src="img/site-logo.svg" alt="Aria Oslo's logo">
<nav>
<a href="index.html">Portfolio</a>
<a href="about.html" class="selected">About</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<section class="about">
<div class="photo">
<img src="img/headshot.png">
</div>
<div class="description">
<h1>Aria Oslo, digital artist based in Portland, Oregon.</h1>
<p>
She focuses on juxtaposing portraiture with geometric
abstraction, a nod to her first career as an architectural
technician working on shaping cityscapes. Aria graduated
from Oregon State University in 2012 with an art history
degree, where she discovered her love for the Orphism art
movement - her graduate project was a 3d puzzle and art
piece titled Moving On. After deciding to go back to her
art roots, Aria launched her 3d puzzle on Kickstarter in
2017 and left her day job. She now produces digital artwork
for advertising, commissions and sells prints on her online
shop, Orpheum.
</p>
<p>
When Aria is not creating art, she's exploring the Pacific
Northwest, reading mystery novels, and hosting board game nights.
She can also be found mulling over all kinds of puzzle pieces,
contemplating how it all fits together and how art imitates life
(or is it the other way around?).
</p>
</div>
</section>
<footer>
<div class="footer-links">
<a href="https://www.instagram.com/obiagba_mary/">
<img src="img/aria-instagram.svg" alt="Aria Oslo instagram icon">
</a>
<a href="mailto:[email protected]">
<img src="img/aria-mail.svg" alt="Aria Oslo mail icon">
</a>
<a>
<img src="img/aria-share.svg" id="share" class="share" alt="Aria Oslo share icon">
</a>
</div>
<div class="input show-input">
<input type="text" class="link" value="https://ifycode.github.io/Aria-portfolio/">
<input type="submit" class="copy-link" value="Copy">
</div>
<div class="comment-box remove-opacity"></div>
<p>©2020 courtesy <a href="https://www.superhi.com/student/plan-design-code">SuperH!</a></p>
</footer>
<script src="js/index.js"></script>
</body>
</html>