-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
110 lines (93 loc) · 5.06 KB
/
Copy pathabout.html
File metadata and controls
110 lines (93 loc) · 5.06 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About | FumoFumos Archives</title>
<meta name="description" content="Learn about FumoFumos Archives, the artist behind the site, and the usage rules for the pixel art.">
<link rel="stylesheet" href="styles/base.css">
<link rel="stylesheet" href="styles/layout.css">
<link rel="stylesheet" href="styles/components.css">
<link rel="stylesheet" href="styles/about.css">
<!-- Preload hover assets -->
<link rel="preload" as="image" href="images/ui/arrow_highlight.png">
<link rel="preload" as="image" href="images/ui/x.png">
</head>
<body>
<header class="site-header">
<nav class="menu">
<input class="menu-checkbox" type="checkbox" id="menu">
<div class="logo">
<div class="logo-fumos">
<div class="logo-fumo"><img src="images/logo/reimu.png" alt="Small Reimu fumo"></div>
<div class="logo-fumo"><img src="images/logo/sanae.png" alt="Small Sanae fumo"></div>
<div class="logo-fumo"><img src="images/logo/tewi.png" alt="Small Tewi fumo"></div>
</div>
<label for="menu" class="menu-toggle" aria-label="Toggle menu"></label>
</div>
<div class="menu-items">
<a href="index.html" class="menu-item">Home</a>
<a href="gallery.html" class="menu-item">Gallery</a>
<a href="about.html" class="menu-item is-active">About</a>
</div>
</nav>
</header>
<main class="page">
<section class="panel about-hero">
<div class="about-media">
<img src="images/fumos/sakuya_v1_5.png" alt="Sakuya fumo">
</div>
<div class="about-main">
<h1 class="pixel-title">About this site</h1>
<p>FumoFumos.com is a small site for me to share my pixel art.</p>
<p>All art here is made by me and is free to download and use however you like!</p>
<p>Have fun and fumofumo :]</p>
</div>
<aside class="outline-panel about-fumos">
<h2 class="pixel-title is-pink">What are fumos?</h2>
<p>Fumos are plush dolls from the Touhou Project.</p>
<p>They are a popular meme in the community and a cute collectable.</p>
</aside>
</section>
<section class="about-grid">
<div class="panel about-panel">
<h2 class="pixel-title is-pink about-panel-title">
<img src="images/ui/save.png" alt="">
Rules & Conditions
</h2>
<div class="rules-content">
<ul class="rules-list">
<li>You may use the art for personal and non-commercial purposes.</li>
<li>Credit is not required, but is always appreciated.</li>
<li>This is unofficial fan art. I only grant permission for rights that I personally own.</li>
<li>This does not grant any rights to third-party characters or designs. Those rights belong to their respective owners.</li>
</ul>
<img src="images/fumos/yukari_v1_5.png" alt="Pixel art of an unofficial fan-made Fumo-style character" class="rules-image">
</div>
</div>
<div class="panel about-panel">
<h2 class="pixel-title is-pink about-panel-title">
<img src="images/ui/save.png" alt="">
About Me
</h2>
<div class="bio-content">
<div class="about-text">
<p>Hi, I'm Tim_M. I'm the person behind this site.</p>
<p>I started making fumo pixel art as practice, then kept going because it was fun. Now I just add new ones whenever I feel like it.</p>
<p>I also made a jam game called Fumo TD, you can check it out on my itch page.</p>
<a href="https://tim-m.itch.io" target="_blank" class="text-link about-link">
Visit my itch.io<span class="text-link-icon"></span>
</a>
</div>
<img src="images/ui/side-reimu.png" alt="" class="about-image">
</div>
</div>
</section>
</main>
<footer class="footer">
<img src="images/ui/heart.png">
<p>Made with Fumos</p>
<img src="images/ui/heart.png">
</footer>
</body>
</html>