-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (73 loc) · 3.26 KB
/
Copy pathindex.html
File metadata and controls
75 lines (73 loc) · 3.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>P.D.'s Text-Kitchen</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav class="main-nav">
<a href="index.html">Home</a>
<a href="text-reverse-lab.html">Text Reversal</a>
<a href="line-break-lab.html">Line Break Lab</a>
<a href="eraser-lab.html">Eraser Lab</a>
<a href="alphabetizer-lab.html">Alphabetizer Lab</a>
<a href="markov-mashup-lab.html">Markov Mashup Lab</a>
<a href="lipogram-lab.html">Lipogram Lab</a>
<a href="long-tail-lab.html">Long Tail Lab</a>
<a href="grid-it-lab.html">Grid-It Lab</a>
<a href="letter-replacement-lab.html">Letter Swap</a>
<a href="chromacode-lab.html">Chromacode</a>
<a href="about.html">About</a>
</nav>
<!-- Tool content here -->
<div class="container">
<h1>Welcome to P.D.'s Text-Kitchen!</h1>
<p class="subtitle">A suite of text mashup tools for creative writers</p>
<div class="tool-list">
<a href="text-reverse-lab.html" class="tool-card">
<h2>Text Reversal</h2>
<p>Upload a .txt file and experiment with reversing words and sentences.</p>
</a>
<a href="line-break-lab.html" class="tool-card">
<h2>Line Break Lab</h2>
<p>Add custom line breaks to your text based on specific characters or strings.</p>
</a>
<a href="eraser-lab.html" class="tool-card">
<h2>Eraser Lab</h2>
<p>Remove every nth word or phrase from your text with ease.</p>
</a>
<a href="alphabetizer-lab.html" class="tool-card">
<h2>Alphabetizer Lab</h2>
<p>Analyze and rearrange words from your text alphabetically and numerically.</p>
</a>
<a href="markov-mashup-lab.html" class="tool-card">
<h2>Markov Mashup Lab</h2>
<p>Create new text by generating Markov chains from your uploaded files.</p>
</a>
<a href="lipogram-lab.html" class="tool-card">
<h2>Lipogram Lab</h2>
<p>Remove all words containing selected letters from your text.</p>
</a>
<a href="long-tail-lab.html" class="tool-card">
<h2>Long Tail Lab</h2>
<p>Reorganize text by the length of clauses, sentences, lines, or words.</p>
</a>
<a href="grid-it-lab.html" class="tool-card">
<h2>Grid-It Lab</h2>
<p>Organize text into a customizable grid with adjustable rows and columns.</p>
</a>
<a href="letter-replacement-lab.html" class="tool-card">
<h2>Letter Swap Lab</h2>
<p>Replace every occurrence of one letter with another throughout your text.</p>
</a>
<a href="chromacode-lab.html" class="tool-card">
<h2>Chromacode Lab</h2>
<p>Encode your text as colored blocks along thin bands — a visual fingerprint of your words, rhythms, and repetitions.</p>
</a>
</div>
<script>
// JavaScript for this specific tool
</script>
</body>
</html>