-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathartist.html
119 lines (84 loc) · 4.17 KB
/
artist.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html lang="en">
<head>
<title>Artist</title>
<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="icon" href="./img/logoMKbrown.png">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Poppins&display=swap" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-168765649-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'UA-168765649-1');
</script>
</head>
<body>
<div class="title">
<a href="./index.html"><h1>BY MUNA KO</h1></a>
</div>
<nav class="topnav">
<span class="navbar-toggle" id="js-navbar-toggle">
<i class="fas fa-bars"></i>
</span>
<ul class="main-nav" id="js-menu">
<li><a href="index.html" class="nav-links">HOME</a></li>
<li><a href="portfolio.html" class="nav-links">PORTFOLIO</a></li>
<li><a href="#" class="nav-links-clicked">ARTIST</a></li>
<li><a href="diaspora.html" class="nav-links">SERIES 1</a></li>
<li><a href="stance.html" class="nav-links">SERIES 2</a></li>
<li><a href="shop.html" class="nav-links">SHOP</a></li>
</ul>
</nav> <br> <div class="quote">
<p> Old site - Please visit <a href="https://bymunako.herokuapp.com/index">https://bymunako.herokuapp.com/index</a> instead. </p>
</div><br>
<img src="./img/artist/me.png" style="width:100%">
<div class="artist-content">
<h1>The Artist behind the Art</h1>
<p>Munachimso Kosarachi Aghamelu, born in London, raised in Manchester but a Nigerian through and through. 20.
<br><br>
The older I get and the more spaces I navigate, the more I want to understand my everyday thoughts and life experiences.
<br><br>
As a black woman just beginning to step into the tech industry, I often think about the things that got me to where I am today and whether
imposter syndrome is a universal feeling. As an artist, I find it easier to express my ideas on race and life through the acrylic medium. And as an avid
overthinker I ponder issues that don't directly affect me, trying to piece together solutions in my head.
<br><br>
So this is <b>BY MUNA KO</b>, the <b>'ko'</b> abbreviates my middle name.
<br><br>
Alot of time went into the creation of this space.
<br> My <b>artist space</b>. A space to showcase my work, and better explain each piece.
<br><br>
What do I hope to achieve from this website?
<br><br>
Become a mentor.
Better explain my art.
Find my <b>purpose</b>.
<br><br>
Oh, and i'll definetly be that aunty in 20 years time that has art all over her walls - because as well as creating art, I love finding inspiration
in other bodies of work.
</p>
</div>
<br>
<div class="quote">
<p>Your story is what you have, what you will always have. It is something to own. - Michelle Obama</p>
</div>
<div class="social-media">
<a href="https://www.instagram.com/bymuna.ko/" target="_blank" class="fa fa-instagram"></a>
<a href="https://twitter.com/bymunako" target="_blank" class="fa fa-twitter"></a>
<a href="https://open.spotify.com/user/r8n6f44o61s1ajvm899j15e4u?si=Pzb-NrEYSNKMq43bsn2bKA" target="_blank" class="fa fa-spotify"></a>
</div>
<div class="copyright">
<p>Copyright bymunako. All rights reserved © 2020 - However code is open source, so feel free to use as a template for your own website just credit me please.<br></p>
</div>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
</body>
<script src="./js/artist.js"></script>
</html>