828 lines
20 KiB
HTML
828 lines
20 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
|
|
|
|
|
|
|
|
|
|
<title>FediZineFest 2024 Zines | FediZineFest</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta charset="utf-8">
|
|
|
|
<!-- Meta -->
|
|
<link rel="canonical" href="/">
|
|
<meta name="description" content="A zine sharing project for the fediverse">
|
|
<meta name="robots" content="index,follow">
|
|
<meta property="og:title" content="FediZineFest 2024 Zines | FediZineFest">
|
|
<meta property="og:type" content="article">
|
|
<meta property="og:url" content="fedizinefest.fyi/years/2024/zines/">
|
|
<meta property="og:description" content="A zine sharing project for the fediverse">
|
|
|
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
|
<meta property="og:image" content="/img/2025-logo.png">
|
|
<meta property="og:image:alt" content="a logo in dark purple and golden yellow. it looks sorta like a folded map, or like a single piece of printer paper that's been folded and cut into the format needed for an 8-page zine. the 8 panels read FEDI ZINE. next to this, a blue and green folded 8-page zine reads 'fest 2025'">
|
|
|
|
<meta name="generator" content="Eleventy v3.1.5">
|
|
|
|
<!-- CSS -->
|
|
|
|
|
|
<style>:root {
|
|
color-scheme: light dark;
|
|
|
|
--color-bg-light: #f0f0f0;
|
|
--color-text-light: #640054;
|
|
--color-header-light: #185370;
|
|
--color-warn-light: #fbcc0a;
|
|
|
|
--color-bg-dark: #1f1f1f;
|
|
--color-text-dark: #91c73b;
|
|
--color-header-dark: #ff9b37;
|
|
--color-warn-dark: #540033;
|
|
|
|
--color-bg: light-dark(var(--color-bg-light), var(--color-bg-dark));
|
|
--color-text: light-dark(var(--color-text-light), var(--color-text-dark));
|
|
--color-header: light-dark(var(--color-header-light), var(--color-header-dark));
|
|
--color-warn: light-dark(var(--color-warn-light), var(--color-warn-dark));
|
|
}
|
|
|
|
/* numbered components are from https://www.joshwcomeau.com/css/custom-css-reset/ */
|
|
*, *::before, *::after {
|
|
box-sizing: border-box; /* 1. Use a more-intuitive box-sizing model */
|
|
}
|
|
|
|
*:not(dialog) {
|
|
margin: 0; /* 2. Remove default margin */
|
|
}
|
|
|
|
*:focus-visible {
|
|
outline: .2rem solid var(--color-header);
|
|
outline-offset: .15rem;
|
|
background-color: var(--color-header);
|
|
}
|
|
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
@media (prefers-reduced-motion: no-preference) {
|
|
html {
|
|
interpolate-size: allow-keywords; /* 3. Enable keyword animations */
|
|
}
|
|
}
|
|
|
|
#root, #__next {
|
|
isolation: isolate; /* 10. Create a root stacking context */
|
|
}
|
|
|
|
body {
|
|
line-height: 1.5; /* 4. Increase line-height */
|
|
-webkit-font-smoothing: antialiased; /* 5. Improve text rendering */
|
|
font-family: "Atkinson Hyperlegible Next", sans-serif;
|
|
background-color: var(--color-bg);
|
|
color: var(--color-text);
|
|
display: grid;
|
|
grid-template-rows: auto 1fr auto;
|
|
min-height: 100%;
|
|
}
|
|
|
|
main {
|
|
width: 60%;
|
|
margin: 0 auto 2rem;
|
|
}
|
|
|
|
@media (max-width: 1100px) {
|
|
main {
|
|
width: 80%;
|
|
}
|
|
}
|
|
|
|
@media (max-width: 650px) {
|
|
main {
|
|
width: 92%;
|
|
}
|
|
}
|
|
|
|
img, picture, video, canvas, svg {
|
|
display: block; /* 6. Improve media defaults */
|
|
max-width: 100%; /* 6. Improve media defaults */
|
|
height: auto; /* 6. Improve media defaults */
|
|
margin: 0 auto;
|
|
}
|
|
|
|
input, button, textarea, select {
|
|
font: inherit; /* 7. Inherit fonts for form controls */
|
|
}
|
|
|
|
p, h1, h2, h3, h4, h5, h6 {
|
|
overflow-wrap: break-word; /* 8. Avoid text overflows */
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
text-wrap: balance; /* 9. Improve line wrapping */
|
|
color: var(--color-header);
|
|
font-weight: bold;
|
|
line-height: 105%;
|
|
}
|
|
|
|
h1 {
|
|
margin: 5rem 0 2rem;
|
|
font-size: 3rem;
|
|
text-align: center;
|
|
}
|
|
|
|
@media (max-width: 650px) {
|
|
h1 { margin: 2rem 0; }
|
|
}
|
|
|
|
h2 {
|
|
font-size: 2rem;
|
|
padding-top: 3rem;
|
|
border-top: solid;
|
|
margin: 1.4rem 0;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1.4rem;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
p {
|
|
text-wrap: pretty; /* 9. Improve line wrapping */
|
|
}
|
|
|
|
p, ul {
|
|
margin: 1.5rem 0;
|
|
}
|
|
|
|
ul ul {
|
|
margin: .5rem 0;
|
|
}
|
|
|
|
@media (max-width: 650px) {
|
|
ul {
|
|
padding-left: 1.5rem;
|
|
}
|
|
}
|
|
|
|
a:link,
|
|
a:visited {
|
|
background-color: var(--color-text);
|
|
color: var(--color-bg);
|
|
font-weight: bold;
|
|
padding: 0 .2rem;
|
|
text-decoration: none;
|
|
border-radius: .2rem;
|
|
}
|
|
|
|
/* makes the years page prettier */
|
|
h3 a:link,
|
|
h3 a:visited {
|
|
background-color: var(--color-header);
|
|
}
|
|
|
|
h3 *:focus-visible {
|
|
outline: .2rem solid var(--color-text);
|
|
background-color: var(--color-text);
|
|
}
|
|
|
|
/* Header nav */
|
|
nav {
|
|
border-bottom: .25rem solid var(--color-header);
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
#skip {
|
|
position: absolute;
|
|
left: -999px;
|
|
top: -999px;
|
|
}
|
|
|
|
#skip:focus-visible {
|
|
left: 1rem;
|
|
top: .5rem;
|
|
}
|
|
|
|
nav ul {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
align-items: stretch;
|
|
justify-content: center;
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
nav li {
|
|
margin: .5rem .5rem;
|
|
}
|
|
|
|
footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 1rem auto 0;
|
|
padding: 1rem .5rem;
|
|
width: 100%;
|
|
flex-flow: row wrap;
|
|
border-top: .25rem solid var(--color-header);
|
|
}
|
|
|
|
footer p {
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
@media (max-width: 650px) {
|
|
footer {
|
|
flex-flow: column nowrap;
|
|
}
|
|
|
|
footer p {
|
|
text-align: center;
|
|
}
|
|
}
|
|
#zine-container {
|
|
padding: 0;
|
|
}
|
|
|
|
#zine-container li {
|
|
list-style: none;
|
|
border-bottom: solid;
|
|
border-left: solid;
|
|
border-radius: 4px;
|
|
padding: 0 .4rem .4rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
#zine-container h2,
|
|
#zine-container p {
|
|
border: none;
|
|
display: inline;
|
|
}
|
|
|
|
#zine-container h2 a {
|
|
background-color: var(--color-header);
|
|
line-height: 135%;
|
|
}
|
|
|
|
#zine-container h3 {
|
|
background-color: var(--color-warn);
|
|
color: var(--color-text);
|
|
border-radius: 3px;
|
|
padding: 0 .2rem;
|
|
text-align: right;
|
|
line-height: 150%;
|
|
margin: .25rem 0 .75rem 0;
|
|
}
|
|
|
|
#zine-container blockquote {
|
|
margin: 0;
|
|
color: var(--color-header);
|
|
}</style>
|
|
|
|
|
|
<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=Atkinson+Hyperlegible+Next:ital,wght@0,200..800;1,200..800&display=swap" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<nav aria-label="main navigation">
|
|
<a id="skip" href="#main">skip to content</a>
|
|
<ul>
|
|
|
|
<li>
|
|
<a href="/" title="home">
|
|
home
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/signup/" title="get involved">
|
|
get involved
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/zines/" title="zines!">
|
|
zines!
|
|
</a>
|
|
</li>
|
|
|
|
<li>
|
|
<a href="/years/" title="all years">
|
|
all years
|
|
</a>
|
|
</li>
|
|
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
|
|
<main id="main">
|
|
|
|
<h1 id="fedizinefest-2024-zines">FediZineFest 2024 Zines</h1>
|
|
|
|
|
|
<p>25 artists. 16 physical zines. 18 digital zines.</p>
|
|
|
|
|
|
<ul id="zine-container">
|
|
|
|
<li>
|
|
|
|
<h2 id="aaron-rafik-el-sabrout">
|
|
|
|
<a href="https://terror.black/@sayyid_qishta">Aaron Rafik El Sabrout</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made physical/digital zines called...</p>
|
|
|
|
<h3 id="thinking-about-it">Thinking About...It</h3>
|
|
|
|
<h3 id="when-i-get-a-boy-chest">When I Get a Boy Chest</h3>
|
|
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>one of: a hentai coloring book, mini zines about adventure time, v for vendetta, foraging, some poetry and fiction stuff too.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="artcollisions">
|
|
|
|
Artcollisions
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical/digital zine called...</p>
|
|
<h3 id="adventures-of-cc">Adventures of CC</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>a little zine on CC, the textile critter I created earlier this year.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="blue-grey">
|
|
|
|
<a href="https://kolektiva.social/@bluejorts">Blue Grey</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made digital zines called...</p>
|
|
|
|
<h3 id="aaaaaah">AAAAAAH</h3>
|
|
|
|
<h3 id="just-be-a-poet">Just Be A Poet</h3>
|
|
|
|
<h3 id="today-is-another-day">Today Is Another Day</h3>
|
|
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>Zine #3: A crippunk, queer-romantic short story between a fox and a bunny.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="dizzi-bloom">
|
|
|
|
<a href="https://nitecrew.rip/@dd">Dizzi Bloom</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a digital zine called...</p>
|
|
<h3 id="autopsy-of-the-mall-god">Autopsy of the Mall God</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>A one-shot comic about a lesbian assassin trying to escape a shadow dimension to be reunited with her wife.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="eric-jennings">
|
|
|
|
Eric Jennings
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical/digital zine called...</p>
|
|
<h3 id="you-can-fix-it-they-said">You Can Fix It, They Said</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>creative non-fiction with illustrations on the subject of recovery (as a male) from childhood sexual abuse</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="felix-sunflower">
|
|
|
|
<a href="https://felixfiles.com/">felix sunflower</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical zine called...</p>
|
|
<h3 id="lil-stinkers-lil-coloring-book">Lil Stinker's lil coloring book</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>clown coloring book!</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="fieryzard">
|
|
|
|
Fieryzard
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a digital zine called...</p>
|
|
<h3 id="the-thread-of-caona-sketches">The Thread of Caona Sketches</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>A compilation of exploratory sketches from my webcomic The Thread of Caona (tentative: and some illustrations?).</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="handmade-ghost">
|
|
|
|
Handmade Ghost
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical/digital zine called...</p>
|
|
<h3 id="un-certainty">UN/CERTAINTY</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>a nonfiction zine about birding, ticker-tape synaesthesia, Huginn & Muninn (the Norse ravens of thought and memory), and poetry.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="haruka-kanata">
|
|
|
|
<a href="https://pdx.social/@HarukaK">Haruka Kanata</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical zine called...</p>
|
|
<h3 id="5-ballads-5-scenes">5 Ballads, 5 Scenes</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>5 Ballads, 5 Scenes - A small artbook featuring 5 watercolor fantasy-comic style paintings, inspired by 5 old ballads, which were famously collected by Francis. J. Child, and have been performed by various modern artists. Pearl-coated paper cover, bound with thread by pamphlet stitch, 12p. H8.5in x W5.5in.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="i-aronson">
|
|
|
|
<a href="https://meemu.org/@Ryntastic">I. Aronson</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical/digital zine called...</p>
|
|
<h3 id="indigenousgulf-online-zine-1">IndigenousGulf.Online zine #1</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>A review of current Indigenous projects going on in the Gulf South, with a focus point of Louisiana, but extending from TX to AL/FL panhandle.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="jack">
|
|
|
|
<a href="https://catcatnya.com/@sodamnqueer">Jack</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a digital zine called...</p>
|
|
<h3 id="the-one-night-stand">The One Night Stand</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>queer love zine with mix of poetry and cute/funny prose pieces</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="jeff-blackman">
|
|
|
|
Jeff Blackman
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made physical zines called...</p>
|
|
|
|
<h3 id="places-i-will-go-before-i-die">Places I will go before I die</h3>
|
|
|
|
<h3 id="oh">OH</h3>
|
|
|
|
<h3 id="wumpf">WUMPF</h3>
|
|
|
|
<h3 id="gah">GAH!</h3>
|
|
|
|
<h3 id="whaap">WHAAP!!</h3>
|
|
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>Triptyc is a collage based comic strip cut from the funny pages.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="lee">
|
|
|
|
<a href="https://leecat.art">lee</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical/digital zine called...</p>
|
|
<h3 id="gender-as-a-proxy-variable">Gender as a Proxy Variable</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>information on handling gender in data and forms</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="maece">
|
|
|
|
<a href="https://toot.cat/@anglemaece">Maece</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a digital zine called...</p>
|
|
<h3 id="i-m-so-tired">I'm so tired</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>A collection of poetry exploring Autistic Burnout</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="nobones">
|
|
|
|
Nobones
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical zine called...</p>
|
|
<h3 id="how-to-change-a-tire">How to Change a Tire</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>a small illustrated zine providing details on how to fix a flat tire on a bicycle. The zine will cover the basic process of replacing an inner tube, and some thoughts about troubleshooting</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="omi">
|
|
|
|
<a href="https://heavenforbid.us/@swanchime">Omi</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical zine called...</p>
|
|
<h3 id="the-ghost-in-the-mirror-is-me">The Ghost in the Mirror is Me</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>THE GHOST IN THE MIRROR IS ME is a calm, horrifying, and starkly beautiful reminiscing of an atrocity that is only as true as you believe. It is a pure black and white work of sequential art at about 30 pages. I wrote it on the anniversary this year on the winter solstice.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="pesto-jaguar">
|
|
|
|
<a href="https://ravenation.club/@pestojaguar">Pesto Jaguar</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a digital zine called...</p>
|
|
<h3 id="perhaps-you-might-try-the-soup-issue-01">Perhaps You Might Try The Soup Issue 01</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>Working on a little 12 page zine called 'Perhaps you might try the soup' In design style it's kind of photo collage, (from original material) and abstract or surreal comics. The content is an odd mish mash of hopepunk, poetry, graphical music and experimental prose. There is strictly no ai generated text or imagery and no use of LLM or diffusion models. Everything is self made by a human.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="play-in-progress">
|
|
|
|
<a href="https://mastodon.art/@playinprogress">play in progress</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical/digital zine called...</p>
|
|
<h3 id="critters">Critters</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>I make ink drawings of various critters, and just realized that some of them make for really nice coloring pages. So now I am suddenly using my own xeroxed drawings as a coloring book, as well as working on making them available as such to others :)</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="riotmuffin">
|
|
|
|
<a href="https://ni.hil.ist/@riotmuffin">riotmuffin</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical/digital zine called...</p>
|
|
<h3 id="get-off-my-nuts">Get Off My Nuts</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>i've made lots of zines and am always looking for reasons for more! the ones i'm most proud of include: travelogue about biking around lake superior as a queer/trans chick -- 'public bathrooms of twin cities cemeteries' (you can look this up on archive.org) -- and various political projects especially related to minneapolis, the george floyd uprising and anarchism/abolitionism. … things i have in the works include a historical fiction alternate history of the george floyd uprising, and a piece about queerness, rebellion and covid</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="sanae">
|
|
|
|
<a href="https://carfree.city/@sanae">Sanae</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical/digital zine called...</p>
|
|
<h3 id="bench-politics">Bench Politics</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>something about transportation and/or public space</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="sarah-sammis">
|
|
|
|
Sarah Sammis
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical zine called...</p>
|
|
<h3 id="chicken-zine">Chicken Zine</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>It will be chicken themed. A brief history of the chicken. One panel chicken comics. Chickens as famous literary characters. Something along those lines.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="sophie">
|
|
|
|
<a href="https://glammr.us/@Sophie">Sophie</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a physical zine called...</p>
|
|
<h3 id="congratulations-you-re-the-queerest-looking-person-in-this-room">Congratulations! You're the Queerest-Looking Person in This Room</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>Congratulations! You're the Queerest-Looking Person in This Room</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="syd">
|
|
|
|
<a href="https://donphan.social/@hi_cial">Syd</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made digital zines called...</p>
|
|
|
|
<h3 id="queer-birds-2022">Queer Birds 2022</h3>
|
|
|
|
<h3 id="ffvii-blazed-illustration">FFVII Blazed Illustration</h3>
|
|
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>I create zines about animals, final fantasy 7 and comics that are queer and furry adjacent.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="voidfuck-poetry-collective">
|
|
|
|
voidfuck poetry collective
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a digital zine called...</p>
|
|
<h3 id="voidfuck-1">voidfuck 1</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>Poetry zine about the body under capitalism and yearning for anarchy. Topics include madness, disability, love, climate anxiety, body dysphoria, queerness, anarchy, poverty, etc. Poetry is written. Might include a few photos or artwork.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<h2 id="wetdryvac">
|
|
|
|
<a href="https://landofkittens.social/users/Wetdryvac">Wetdryvac</a>
|
|
|
|
</h2>
|
|
|
|
|
|
<p>made a digital zine called...</p>
|
|
<h3 id="contract-consent-lair-w-fzf-001">CONTRACT / CONSENT LAIR W fZF | 001</h3>
|
|
|
|
|
|
<p>and the original blurb was...</p>
|
|
<blockquote><p>I particularly like photography zines geared towards texture, both black and white, and color. I deliver finals as print-ready DRM-Free PDF, and it's cool to distribute them as such. I also do zines of written word and art.</p>
|
|
</blockquote>
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
</main>
|
|
|
|
<footer>
|
|
<p>
|
|
Read the <a href="/attribution">site attribution</a>
|
|
</p>
|
|
<p>© 2023-2026</p>
|
|
<p>Site feedback? Questions?
|
|
<a href="https://leecat.art/contact">Reach out to Lee</a>
|
|
</p>
|
|
</footer>
|
|
|
|
<!-- This page `/years/2024/zines/` was built on 2026-08-28T18:55:58.100Z -->
|
|
</body>
|
|
</html>
|