-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
163 lines (151 loc) · 5.91 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
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="KoiDev Games is an indie game studio creating authentic, charming games with memorable characters."
/>
<!-- Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,200;0,300;0,400;1,300&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Laila:wght@300;400;500&display=swap"
rel="stylesheet"
/>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Aldrich&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="sass/main.css" />
<link rel="icon" type="image/png" href="img/favicon.png" />
<title>KoiDev Games</title>
</head>
<body>
<nav class="nav">
<div class="nav__container">
<div class="nav__container--left">
<a href="index.html" class="nav__item">
<img src="img/koidevbig.png" alt="KoiDev Logo" class="nav__logo" />
<h1 class="nav__title">KoiDev Games</h1>
</a>
</div>
<ul class="nav__items">
<li class="nav__t">
<a href="index.html" class="nav__item">Home</a>
</li>
<li class="nav__t">
<a href="artificia.html" class="nav__item">Artificia</a>
</li>
<li class="nav__t">
<a href="about.html" class="nav__item">About Us</a>
</li>
</ul>
</div>
</nav>
<div class="section-about">
<h2 class="section-us__title">About Us</h2>
<div class="section-us__container2">
<div class="section-us__profiles section-us__emma">
<h3 class="section-us__profiles--title">Emma Schaale</h3>
<h4 class="section-us__profiles--title2">
Producer, Artist, Writing, Marketing
</h4>
<div class="section-us__profiles-image">
<img
class="section-us__profiles--img"
src="img/emmaschaale.jpg"
alt="Emma Schaale"
/>
</div>
</div>
<div class="about-description">
Emma Schaale is game and web developer. She acts as the producer,
artist, writer, and marketer for ‘Artificia’. She hopes that players
will enjoy the moral choices posed in-game and the characters the team
created. In her free time, she enjoys hiking, martial arts, and video
game and anime music.
</div>
<div class="section-us__profiles section-us__hongyu">
<h3 class="section-us__profiles--title">Hongyu Li</h3>
<h4 class="section-us__profiles--title2">Programmer</h4>
<div class="section-us__profiles-image">
<img
class="section-us__profiles--img"
src="img/hongyuli.jpg"
alt="Hongyu Li"
/>
</div>
</div>
<div class="about-description">
Hongyu Li is a game designer. She is the programmer for ‘Artificia’
and helped design some characters and story structures. She likes
Dating simulations and hopes players can enjoy ‘Artificia’ as much as
she does.
</div>
<div class="section-us__profiles section-us__hank">
<h3 class="section-us__profiles--title">Hank Lasley</h3>
<h4 class="section-us__profiles--title2">Audio, Writer</h4>
<div class="section-us__profiles-image">
<img
class="section-us__profiles--img"
src="img/hanklasley.jpg"
alt="Hank Lasley"
/>
</div>
</div>
<div class="about-description">
Hank Lasley is a audio and game designer. He is the audio designer for
Artificia, and he contributes to the writing and overall design of the
game. He loves to create and consume stories, so he’s excited to be
able to share one of his own with a wide audience.
</div>
<div class="section-us__profiles section-us__katie">
<h3 class="section-us__profiles--title">Katie Giugno</h3>
<h4 class="section-us__profiles--title2">
Writer, Editor, Marketing
</h4>
<div class="section-us__profiles-image">
<img
class="section-us__profiles--img"
src="img/katiegiugno.jpg"
alt="Katie Giugno"
/>
</div>
</div>
<div class="about-description">
Katie is a college student studying creative writing and (aptly!)
artificial intelligence. She is an editor for Artificia but also
contributes written and marketing content. After having the
opportunity to spend time with the game’s characters, she hopes
players fall in love with them just as she has.
</div>
</div>
</div>
<footer class="footer">
<div class="footer__copyright">©KoiDev Games 2021</div>
<div class="footer__logo">
<img src="img/koidevbig.png" alt="KoiDev Logo" class="nav__logo" />
</div>
<div class="footer__social">
<a href="https://twitter.com/koidevgames" target="_target"
><ion-icon class="footer__social--logo" name="logo-twitter"></ion-icon
></a>
</div>
<div class="footer__empty"></div>
<div class="footer__love">Made with 🐱👤 by Team KoiDev</div>
</footer>
<script src="https://unpkg.com/[email protected]/dist/ionicons.js"></script>
<script src="js/script.js"></script>
</body>
</html>