2026-08-26 15:36:49 -07:00
<!DOCTYPE html>
< html lang = "en" >
< head >
2026-08-27 20:35:17 +00:00
2026-08-26 15:36:49 -07:00
< title > FediZineFest 2025 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 2025 Zines | FediZineFest" >
< meta property = "og:type" content = "article" >
2026-09-14 17:29:55 +00:00
< meta property = "og:url" content = "https://fedizinefest.fyi/years/2025/zines/" >
2026-08-26 15:36:49 -07:00
< meta property = "og:description" content = "A zine sharing project for the fediverse" >
< link rel = "icon" type = "image/x-icon" href = "/favicon.ico" >
2026-09-14 17:29:55 +00:00
< meta property = "og:image" content = "https://fedizinefest.fyi/img/2026-2027-logo-dark.png" >
2026-09-13 17:56:32 +00:00
< meta property = "og:image:alt" content = "the logo of FediZineFest 2026-2027 which is a 4 by 4 grid of blocky letters reading fedi zine fest 26-27, randomly colored with the 26-27 palette" >
2026-08-26 15:36:49 -07:00
< meta name = "generator" content = "Eleventy v3.1.5" >
<!-- CSS -->
2026-09-13 17:56:32 +00:00
< style >@ font-face {
font-family : "Bloktype" ;
src : url ( "/fonts/BLOKTYPE.woff2" );
}
: root {
2026-08-26 15:36:49 -07:00
color-scheme : light dark ;
2026-09-13 17:56:32 +00:00
--color-light : #f3ccfb ;
--color-dark : #130b16 ;
--color-pink : #ea33d2 ;
--color-blurple : #6d12e2 ;
2026-08-26 15:36:49 -07:00
2026-09-13 17:56:32 +00:00
--color-bg : light-dark ( var ( -- color - light ), var ( -- color - dark ));
--color-text : light-dark ( var ( -- color - dark ), var ( -- color - light ));
--color-header : light-dark ( var ( -- color - blurple ), var ( -- color - pink ));
--color-warn : light-dark ( var ( -- color - pink ), var ( -- color - blurple ));
2026-08-26 15:36:49 -07:00
}
/* 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 : .2 rem solid var ( -- color - header );
outline-offset : .15 rem ;
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 1 fr auto ;
min-height : 100 % ;
}
main {
width : 60 % ;
margin : 0 auto 2 rem ;
}
@ 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 {
2026-09-13 17:56:32 +00:00
margin : 5 rem 0 ;
2026-08-26 15:36:49 -07:00
font-size : 3 rem ;
text-align : center ;
}
@ media ( max-width : 650px ) {
h1 { margin : 2 rem 0 ; }
}
h2 {
font-size : 2 rem ;
margin : 1.4 rem 0 ;
}
2026-09-13 17:56:32 +00:00
p + h2 ,
h3 + h2 {
padding-top : 3 rem ;
border-top : solid ;
}
2026-08-26 15:36:49 -07:00
h3 {
font-size : 1.4 rem ;
margin-top : 1 rem ;
}
p {
text-wrap : pretty ; /* 9. Improve line wrapping */
}
p , ul {
margin : 1.5 rem 0 ;
}
ul ul {
margin : .5 rem 0 ;
}
@ media ( max-width : 650px ) {
ul {
padding-left : 1.5 rem ;
}
}
a : link ,
a : visited {
background-color : var ( -- color - text );
color : var ( -- color - bg );
font-weight : bold ;
padding : 0 .2 rem ;
text-decoration : none ;
border-radius : .2 rem ;
}
/* makes the years page prettier */
h3 a : link ,
h3 a : visited {
background-color : var ( -- color - header );
}
h3 * : focus-visible {
outline : .2 rem solid var ( -- color - text );
background-color : var ( -- color - text );
}
2026-09-14 18:07:07 +00:00
time {
text-decoration : .1 rem underline wavy var ( -- color - blurple );
}
2026-08-26 15:36:49 -07:00
/* Header nav */
nav {
border-bottom : .25 rem solid var ( -- color - header );
font-size : 1.1 rem ;
}
# skip {
position : absolute ;
left : -999 px ;
top : -999 px ;
}
# skip : focus-visible {
left : 1 rem ;
top : .5 rem ;
}
nav ul {
display : flex ;
flex-flow : row wrap ;
align-items : stretch ;
justify-content : center ;
list-style : none ;
padding : 0 ;
margin : 0 ;
}
nav li {
margin : .5 rem .5 rem ;
}
footer {
display : flex ;
justify-content : space-between ;
margin : 1 rem auto 0 ;
padding : 1 rem .5 rem ;
width : 100 % ;
2026-08-26 23:50:47 +00:00
flex-flow : row wrap ;
2026-08-26 15:36:49 -07:00
border-top : .25 rem solid var ( -- color - header );
}
footer p {
margin : 0.5 rem 0 ;
}
2026-08-26 23:50:47 +00:00
@ media ( max-width : 650px ) {
footer {
flex-flow : column nowrap ;
}
footer p {
text-align : center ;
}
}
2026-09-13 17:56:32 +00:00
. bloktype {
2026-09-13 18:00:13 +00:00
font-family : "Bloktype" , "Atkinson Hyperlegible Next" , sans-serif ;
2026-09-13 17:56:32 +00:00
font-size : 1.35 em ; /* because of the blocks the letters are rather small */
color : var ( -- color - text );
}
@ media ( prefers-color-scheme : light ) {
. dark-mode {
display : none ;
}
}
@ media ( prefers-color-scheme : dark ) {
. light-mode {
display : none ;
}
}
/* only float insets on larger screens */
@ media ( min-width : 551px ) {
. inset {
clear : both ;
width : 40 % ;
padding-left : 1 rem ;
padding-bottom : .5 rem ;
float : right ;
background-color : var ( -- color - bg );
}
}
2026-08-26 15:36:49 -07:00
# zine-container {
padding : 0 ;
}
2026-09-17 21:57:43 +00:00
# zine-container > li {
2026-08-26 15:36:49 -07:00
list-style : none ;
border-bottom : solid ;
border-left : solid ;
border-radius : 4 px ;
padding : 0 .4 rem .4 rem ;
2026-09-17 21:57:43 +00:00
margin-bottom : 2 rem ;
2026-08-26 15:36:49 -07:00
}
# 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 : 3 px ;
padding : 0 .2 rem ;
text-align : right ;
line-height : 150 % ;
margin : .25 rem 0 .75 rem 0 ;
}
# zine-container blockquote {
margin : 0 ;
color : var ( -- color - header );
2026-09-17 21:57:43 +00:00
}
# zine-container blockquote p {
display : block ;
margin-block : .75 rem ;
}
# zine-container blockquote p : first-child {
margin-top : .5 rem ;
}
# zine-container blockquote p : last-child {
margin-bottom : 0 ;
2026-08-26 15:36:49 -07:00
}</ 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-2025-zines" > FediZineFest 2025 Zines</ h1 >
< p > 19 artists. 13 physical zines. 16 digital zines.</ p >
< ul id = "zine-container" >
< li >
< h2 id = "aaron-el-sabrout" >
2026-09-17 21:57:43 +00:00
< a href = "https://toreachpoise.itch.io" target = "_blank" > Aaron El Sabrout</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made physical/digital zines called...</ p >
< h3 id = "read-me-to-filth-i-m-dying-of-thirst" > Read Me to Filth/I' m Dying of Thirst</ h3 >
< h3 id = "i-have-a-weird-relationship-to-clothes" > I Have a Weird Relationship to Clothes...</ h3 >
< h3 id = "i-love-myself" > I Love Myself</ h3 >
< h3 id = "leave-them-bee" > Leave Them Bee</ h3 >
2026-08-26 15:36:49 -07:00
2026-09-16 01:04:17 +00:00
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > new collection of poetry on nature, leftist politics, and transness!</ p >
</ blockquote >
</ li >
< li >
< h2 id = "acin-fals" >
2026-09-17 21:57:43 +00:00
< a href = "https://shadowfals.carrd.co/" target = "_blank" > Acin Fals</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a digital zine called...</ p >
< h3 id = "the-rose-woman-and-the-bear" > The Rose Woman and the Bear</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > romantic m/m flash fiction with a theme of transitions, seasons, and/or memories</ p >
</ blockquote >
</ li >
< li >
< h2 id = "artcollisions" >
2026-09-17 21:57:43 +00:00
< a href = "https://vis.social/@artcollisions" target = "_blank" > Artcollisions</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a physical/digital zine called...</ p >
< h3 id = "adventures-of-dd-fifi-and-pepe" > Adventures of DD, Fifi, and Pepe</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > Further cozy adventures of CC and friends, textile art characters</ p >
</ blockquote >
</ li >
< li >
< h2 id = "ashley-mcquaid" >
2026-09-17 21:57:43 +00:00
< a href = "https://eightofpentacles.com" target = "_blank" > Ashley McQuaid</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a physical zine called...</ p >
< h3 id = "tales-from-rockery-loop" > Tales from Rockery Loop</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > I am leaning towards making a miniature field guide of the birds, mammals, and plants that live on my favorite trail. Back and forth on whether I want to include some personal narrative but pen & pencil drawings of critters for sure</ p >
</ blockquote >
</ li >
< li >
< h2 id = "bouncinglime" >
bouncinglime
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a physical/digital zine called...</ p >
< h3 id = "postcards" > Postcards</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > four postcards printed on cardstock (physical) or for printing on cardstock (digital) in black-and-white that can be colored and otherwise decorated and sent out!</ p >
</ blockquote >
</ li >
< li >
< h2 id = "cammie" >
2026-09-17 21:57:43 +00:00
< a href = "https://worshipthesquid.tumblr.com/" target = "_blank" > Cammie</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a physical/digital zine called...</ p >
< h3 id = "mortsafe" > Mortsafe</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > Mortsafe is a little biro zine about fungal zombies, non-human or gestalt minds, and life continuing differently after death :)</ p >
</ blockquote >
</ li >
< li >
< h2 id = "em-mett" >
2026-09-17 21:57:43 +00:00
< a href = "https://proteanart.xyz" target = "_blank" > Em/mett</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a physical/digital zine called...</ p >
< h3 id = "so-you-want-to-be-a-pen-pal" > So You Want To Be A Pen Pal</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > So You Want To Be A Pen Pal minizine. About being a pen pal for incarcerated folks! And beginner advocacy work!</ p >
</ blockquote >
</ li >
< li >
< h2 id = "evel" >
2026-09-17 21:57:43 +00:00
< a href = "https://evel.life" target = "_blank" > Evel</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a digital zine called...</ p >
< h3 id = "let-your-disabilities-hold-you-back" > Let Your Disabilities Hold You Back!!!</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > About severe disability with a bit extra on being a caregiver</ p >
</ blockquote >
</ li >
< li >
< h2 id = "goblin-jane" >
2026-09-17 21:57:43 +00:00
< a href = "https://thewellandthetree.com/" target = "_blank" > goblin jane</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a physical/digital zine called...</ p >
< h3 id = "doorways-are-portals" > Doorways are Portals</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > tiny tales of wandering thru interdimensional portals, meeting new friends big and small, and making stone soup.</ p >
</ blockquote >
</ li >
< li >
< h2 id = "gup" >
2026-09-17 21:57:43 +00:00
< a href = "https://cyberpunk.gay/@glyph" target = "_blank" > gup</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a physical/digital zine called...</ p >
< h3 id = "untitled" > (untitled)</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > fortune teller/ cootie catcher foldable. prefolded for physical, print and fold yourself for digital. decorated with hand carved stamps. black and white. i need to buy nice paper.</ p >
</ blockquote >
</ li >
< li >
< h2 id = "lea-v-t" >
2026-09-17 21:57:43 +00:00
< a href = "https://mastodon.art/@leavt" target = "_blank" > Léa V.T.</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a physical/digital zine called...</ p >
< h3 id = "grand-jaloprix" > Grand Jaloprix</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
2026-09-16 01:04:17 +00:00
< blockquote >< p > I made a small comic this summer and i'd like to print it in zine form with bonus illustrations and prep sketches. It's about a bunch of kids living in a dieselpunk junkyard racing wacky vehicles. Friends become enemies and enemies become friends, lots of vroom vroom. < a href = "https://mastodon.art/@leavt/113056897528979869" target = "_blank" rel = "external" > preview</ a ></ p >
2026-08-26 15:36:49 -07:00
</ blockquote >
</ li >
< li >
< h2 id = "lee" >
2026-09-17 21:57:43 +00:00
< a href = "https://leecat.art" target = "_blank" > lee</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a physical zine called...</ p >
< h3 id = "kestrel" > KESTREL</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > 2 color hand-printed zine with pictures of my dog</ p >
</ blockquote >
</ li >
< li >
< h2 id = "limnetic-villains" >
2026-09-17 21:57:43 +00:00
< a href = "https://limneticvillains.bandcamp.com" target = "_blank" > Limnetic Villains</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a digital zine called...</ p >
< h3 id = "auditory-ossicles-issue-1" > Auditory Ossicles Issue 1</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > A fake 1970s punk zine, including interviews, photos, reviews, fake adverts for products and bands that don't exist, in the style of the time.</ p >
</ blockquote >
</ li >
< li >
< h2 id = "mythical-type" >
2026-09-17 21:57:43 +00:00
< a href = "https://mythicaltype.com/zines/" target = "_blank" > Mythical Type</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a physical zine called...</ p >
< h3 id = "text-message-moods" > Text Message Moods</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > “Text Message Moods” is an 8-page mini zine that illustrates what text message conversations look like, depending on people’ s moods. Hand-drawn, printed in color on white paper.</ p >
</ blockquote >
</ li >
< li >
< h2 id = "pesto-jaguar" >
2026-09-17 21:57:43 +00:00
< a href = "https://sunny.garden/@pestojaguar" target = "_blank" > Pesto Jaguar</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a digital zine called...</ p >
< h3 id = "swimming-through-treacle-issue-00" > Swimming Through Treacle Issue 00</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > abstract, absurd, surreal, experimental?... Perhaps comics-adjacent or sciFi-adjacent?... some manner of weird zine, mainly images with some text like experimental prose or poetry, even?... Around 20 pages in A5. No 'AI' or image/text generation, just human made digital art.</ p >
</ blockquote >
</ li >
< li >
< h2 id = "play-in-progress" >
2026-09-17 21:57:43 +00:00
< a href = "https://mastodon.art/@playinprogress" target = "_blank" > play in progress</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a physical/digital zine called...</ p >
< h3 id = "a-murder-of-crows" > A Murder of Crows</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > a fold-out formal experiment combining letter shapes and ink drawings</ p >
</ blockquote >
</ li >
< li >
< h2 id = "riotmuffin" >
riotmuffin
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a physical/digital zine called...</ p >
< h3 id = "you-gotta-leave-rebel-stories" > You Gotta Leave: Rebel Stories</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > I’ m gonna try to do that George Floyd uprising alternate history I was thinking about last time, but I might also do something else. In any case, it’ ll be SHORTER than last years honker lol</ p >
</ blockquote >
</ li >
< li >
< h2 id = "wetdryvac" >
2026-09-17 21:57:43 +00:00
< a href = "https://wetdryvac.net" target = "_blank" > Wetdryvac</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a digital zine called...</ p >
< h3 id = "rivet-drainage-lair-w-fzf-002" > Rivet/Drainage Lair W fZF | 002</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > The Vac is a contract/consent ethicist with forays into art, music, literature, and whatever else strikes its fancy. This usually means being somewhere under a cat.</ p >
</ blockquote >
</ li >
< li >
< h2 id = "xyzzy" >
2026-09-17 21:57:43 +00:00
< a href = "https://xyzzyzzyzx.xyz/" target = "_blank" > xyzzy</ a >
2026-08-26 15:36:49 -07:00
</ h2 >
2026-09-16 01:04:17 +00:00
< p > made a digital zine called...</ p >
< h3 id = "shut-up-and-eat-your-dirt" > Shut up & eat your dirt!</ h3 >
< p > and the original blurb was...</ p >
2026-08-26 15:36:49 -07:00
< blockquote >< p > a perzine about my experience in a conservative catholic high school, called “shut up & eat your dirt”</ p >
</ blockquote >
</ li >
</ ul >
</ main >
< footer >
< p >
Read the < a href = "/attribution" > site attribution</ a >
</ p >
2026-08-26 23:50:47 +00:00
< p > © 2023-2026</ p >
2026-08-26 15:36:49 -07:00
< p > Site feedback? Questions?
2026-08-27 04:12:41 +00:00
< a href = "https://leecat.art/contact" > Reach out to Lee</ a >
2026-08-26 15:36:49 -07:00
</ p >
</ footer >
2026-09-18 03:06:25 +00:00
<!-- This page `/years/2025/zines/` was built on 2026-09-18T03:06:20.391Z -->
2026-08-26 15:36:49 -07:00
</ body >
</ html >