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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Carson Fleming" />
<meta name="description" content="fle.ms is a REST API driven URL shortener—a service which stores long and complicated URLs such as Google Drive documents, GitHub commit references, Spotify playlists, and social media permalinks." />
<link rel="canonical" href="https://fle.ms/" />
<link rel="icon" type="image/svg+xml" href="https://c.fle.ms/fle.ms/logo.svg" />
<link rel="stylesheet" type="text/css" href="css/fonts.css" />
<link rel="stylesheet" type="text/css" href="css/standard.css" />
<link rel="stylesheet" type="text/css" href="css/mobile.css" />
<title>fle.ms</title>
<script type="text/javascript" src="js/slug.js" async></script>
<script type="text/javascript" src="js/ajax.js" defer></script>
</head>
<body>
<div id="header">
<h1 id="logo">fle.ms</h1>
</div>
<div id="content">
<div id="lhs">
<div class="form-element">
<p><label for="url">Paste a Long URL</label></p>
<p><input id="url" type="text" placeholder="https://docs.google.com/spreadsheets/d/1SIXl0TxDgaTU49ZOph5s8HA5ZqtEakBCdQkqHzzfhf8/edit" class="fullsize" /></p>
</div>
<div class="form-element">
<p><label for="slug">Customize Short URL</label></p>
<p>
<label id="base-url" for="slug">fle.ms/</label>
<input id="slug" type="text" />
</p>
</div>
<div class="form-element">
<p><button id="shortenButton" class="fullsize">Shorten URL</button></p>
</div>
</div>
<div id="rhs">
<h3>What is this?</h3>
<p>fle.ms is a REST API driven URL shortener—a service which stores
long and complicated URLs such as Google Drive documents, GitHub commit
references, Spotify playlists, and social media permalinks. Our service
replaces these long links that are hard to remember and share,
with short alphanumeric slugs and keywords that you can say or type out
in one go.
</p>
<h3>Why this service over another?</h3>
<p>Popular URL shorteners, like most other real estate on the internet,
have become saturated over their long tenure. Relevant keywords, names,
and even short random slugs are all taken, leading to longer and less
meaningful links. This is a fresh start.
</p>
<p>fle.ms places an emphasis on readability and communicability, so our
service ignores capitalization entirely. An 'a' is an
'A' and a 'z' is a 'Z'. No need to sweat
over what kind. Our technology is optimized for usability without
sacrificing speed.
</p>
</div>
</div>
<div id="footer">
<span><a href="https://fle.ms/author">Author</a></span>
<span><a href="https://fle.ms/github">Source</a></span>
</div>
</body>
</html>
|