How to share a short story as a link

A reader decides about a story in the first paragraph. An attachment puts a download in front of that paragraph, and some readers never arrive.

A short story link is a story published at an address so readers open it in one tap, with typography you control and no download in the way.

Before anything about layout, there is a question about rights that is easy to answer and expensive to ignore.

A short story in a browser. Title, word count, and a narrow column of prose.
A short story in a browser. Title, word count, and a narrow column of prose.

This guide covers what posting does to first publication rights, how to set fiction so it reads well in long stretches, and why telling readers the length helps rather than hurts.

First publication rights come first

Most literary magazines buy first publication rights. That means they want to be the first place the story appears, anywhere, including your own site.

A story sitting at a public address has been published in that sense. It does not matter that the audience was three people. Editors check, and a story that has been posted is usually declined without being read.

Where you are Public page Unguessable address
Planning to submit to magazines Spends first rights Generally fine
Sharing with a workshop Unnecessary risk Correct
Story already published, rights reverted Fine Fine
Self-publishing deliberately The point Pointless

If you intend to submit, keep the address unguessable and out of search engines, and read the guidelines of the specific magazine. Some are relaxed about work shared privately; few are relaxed about work that was findable.

Set it for long reading

Fiction is read differently from articles. Someone reading a story gives it fifteen uninterrupted minutes, so small discomforts accumulate.

.story {
  max-width: 33rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  font-size: 1.1rem;
  line-height: 1.8;
}
.story p { margin: 0 0 1.15em; }
.story p.break { text-align: center; margin: 2em 0; }

A slightly narrower column and slightly looser leading than you would use for an article. The difference is small on any one line and noticeable over four thousand words.

Scene breaks need marking. A blank line alone disappears at the bottom of a screen, so a centred mark of some kind is worth the small amount of furniture it adds.

Remove everything else

An article page can carry navigation, related links and a footer without harm. A story cannot.

Anything at the edge of the screen is competing with your first paragraph, and your first paragraph is doing the hardest work in the piece. Strip the page to the title, the length, the text, and whatever byline you want.

Put the navigation at the end if you want readers to go somewhere next. By then they have either finished or left.

Tell them how long it is

There is a persistent worry that stating a word count scares readers off. The opposite is closer to true.

A reader with five minutes will not start something of unknown length, because the risk is being interrupted halfway. Tell them it is 3,400 words, or about fourteen minutes, and they can decide to start now or come back. The ones who come back are readers you would otherwise have lost entirely.

The same story on a phone. Title, word count, and the opening paragraphs in a single column.
The same story on a phone. Title, word count, and the opening paragraphs in a single column.

A version for people who print

Some readers, particularly in workshops, print fiction to mark it up. Print rules make that copy usable.

@media print {
  nav, .meta { display: none; }
  @page { size: A4; margin: 25mm; }
  .story { max-width: none; font-size: 12pt; line-height: 2; }
}

Double spacing for a workshop copy leaves room to write between lines. If you are printing to submit somewhere, follow that market's format requirements instead, which usually specify spacing, font and header content precisely.

More on the conversion in export HTML to PDF.

Put it at an address

Check your submission plans, write the story as a page, set the column for long reading, and create a share link.

The reader taps once and is in the first paragraph, which is where you wanted them.

Questions people ask

Does posting a story online count as publication?

For most magazines, yes. They buy first publication rights, and a story on a public page has already been published even if nobody read it. This is the single most important thing to check before posting fiction you intend to submit anywhere.

So how do I share a story with readers I trust?

Use an unguessable address and keep it out of search engines. Sharing privately with a workshop group or a few readers is not publication in the sense magazines mean, though a story left open at a findable address for a year probably is. Read the specific guidelines of anywhere you plan to submit.

What about a story I have already published elsewhere?

Check what rights you signed away and for how long. Many contracts include an exclusivity period, after which rights revert to you and posting is fine. Crediting the original publication is normal practice and usually expected.

How do I make fiction read well on a screen?

A narrow column, generous line height, and restraint everywhere else. Fiction needs less furniture than an article: no navigation competing for attention, no sidebar, nothing that invites the eye away from the text.

Should I show the word count?

Yes, or a reading time. Readers decide whether to start based on how long it will take, and hiding that makes them more likely to close it than to commit. A line saying 3,400 words is an invitation, not a warning.

Keep reading