-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathStyle.html
More file actions
843 lines (784 loc) · 35.3 KB
/
Style.html
File metadata and controls
843 lines (784 loc) · 35.3 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Elements of Nineteenth Century Language</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;600;700&display=swap');
/* ArchRiot Dark Theme Override */
:root {
--archriot-dark-bg: #0a0a0f;
--archriot-darker-bg: #05050a;
--archriot-purple: #8b5cf6;
--archriot-purple-light: #a78bfa;
--archriot-purple-dark: #7c3aed;
--archriot-blue: #3b82f6;
--archriot-cyan: #06b6d4;
--archriot-text: #e5e7eb;
--archriot-text-dim: #9ca3af;
--archriot-border: #374151;
--archriot-code-bg: #1f2937;
--archriot-accent: #f59e0b;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(135deg, var(--archriot-dark-bg) 0%, var(--archriot-darker-bg) 100%);
color: var(--archriot-text);
font-family: 'JetBrains Mono', 'Fira Code', 'SF Mono', Monaco, monospace;
line-height: 1.75;
font-size: 18px;
padding: 40px 20px;
max-width: 960px;
margin: 0 auto;
}
header {
text-align: center;
border-bottom: 3px double var(--archriot-purple);
padding-bottom: 40px;
margin-bottom: 50px;
}
h1 {
font-family: 'JetBrains Mono', monospace;
font-size: 3.2rem;
background: linear-gradient(45deg, var(--archriot-purple), var(--archriot-cyan));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
letter-spacing: 3px;
margin-bottom: 10px;
}
.subtitle {
font-family: 'JetBrains Mono', monospace;
font-size: 1.35rem;
color: var(--archriot-text-dim);
font-style: italic;
margin-bottom: 8px;
}
.author-line {
font-size: 1.1rem;
color: var(--archriot-purple-light);
margin-top: 20px;
}
nav {
background: rgba(10, 10, 15, 0.95);
position: sticky;
top: 20px;
padding: 20px;
border: 1px solid var(--archriot-border);
margin-bottom: 60px;
border-radius: 8px;
backdrop-filter: blur(10px);
box-shadow: 0 8px 32px rgba(139, 92, 246, 0.1);
}
nav h2 {
color: var(--archriot-purple-light);
font-family: 'JetBrains Mono', monospace;
margin-bottom: 15px;
font-size: 1.4rem;
}
nav ul {
list-style: none;
}
nav a {
color: var(--archriot-text);
text-decoration: none;
display: block;
padding: 6px 0;
transition: all 0.3s ease;
}
nav a:hover {
color: var(--archriot-cyan);
text-shadow: 0 0 8px var(--archriot-cyan);
}
section {
margin-bottom: 80px;
}
section p {
margin-bottom: 1.5em;
}
h2 {
font-family: 'JetBrains Mono', monospace;
font-size: 2.1rem;
background: linear-gradient(45deg, var(--archriot-purple), var(--archriot-cyan));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
border-bottom: 1px solid var(--archriot-border);
padding-bottom: 12px;
margin-bottom: 30px;
}
section > h3 {
font-family: 'JetBrains Mono', monospace;
font-size: 1.3rem;
color: var(--archriot-cyan);
margin-bottom: 0.5em;
}
section > h3 + p {
margin-top: 0;
padding-left: 1.5em;
border-left: 2px solid var(--archriot-purple);
padding-bottom: 1em;
}
section > h3 + p + p {
padding-left: 1.5em;
margin-top: -1em;
}
h3 {
font-family: 'JetBrains Mono', monospace;
color: var(--archriot-purple-light);
font-size: 1.45rem;
margin: 35px 0 15px;
}
.rule {
margin: 28px 0;
padding-left: 25px;
border-left: 4px solid var(--archriot-purple);
}
.example-pair {
background: var(--archriot-code-bg);
padding: 18px 24px;
margin: 16px 0;
border-left: 6px solid var(--archriot-purple-dark);
font-size: 1.05rem;
border-radius: 0 8px 8px 0;
}
.modern {
color: var(--archriot-text-dim);
font-style: italic;
}
.modern::before {
content: "NOW: ";
color: var(--archriot-accent);
font-weight: bold;
}
.then {
color: var(--archriot-text);
}
.then::before {
content: "Proper: ";
color: var(--archriot-purple-light);
font-weight: bold;
}
footer {
text-align: center;
padding: 40px 0;
border-top: 2px solid var(--archriot-purple);
color: var(--archriot-text-dim);
font-size: 0.95rem;
background: var(--archriot-darker-bg);
}
.gold-divider {
height: 2px;
background: linear-gradient(to right, transparent, var(--archriot-purple), transparent);
margin: 60px 0;
}
blockquote {
font-style: italic;
border-left: 4px solid var(--archriot-purple);
padding-left: 25px;
color: var(--archriot-text);
margin: 30px 0;
background: var(--archriot-code-bg);
padding: 1rem 1.5rem;
border-radius: 0 8px 8px 0;
}
/* Scrollbar styling */
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: var(--archriot-darker-bg);
}
::-webkit-scrollbar-thumb {
background: linear-gradient(45deg, var(--archriot-purple), var(--archriot-blue));
border-radius: 6px;
}
::selection {
background: var(--archriot-purple);
color: white;
}
</style>
</head>
<body>
<header>
<h1>Elements of Nineteenth Century Language</h1>
<div class="subtitle">A Style Manual for the Formal Register of the Nineteenth Century</div>
<p style="max-width: 680px; margin: 30px auto; font-size: 1.05rem; opacity: 0.95;">
The principles of William Strunk Jr. and E. B. White<br><br>
Adapted for the elevated language of Sherlock Holmes and the rhetorical cadences of Deadwood
</p>
<div class="author-line">An Informational Manual • Formal Register Only</div>
</header>
<nav>
<h2>Contents</h2>
<ul>
<li><a href="#intro">Preface</a></li>
<li><a href="#rules">I. Elementary Rules of Usage</a></li>
<li><a href="#principles">II. Elementary Principles of Composition</a></li>
<li><a href="#form">III. A Few Matters of Form</a></li>
<li><a href="#misused">IV. Words and Expressions Commonly Misused</a></li>
<li><a href="#examples">V. Illustrative Examples (110 Pairs)</a></li>
<li><a href="#approach">VI. An Approach to Style</a></li>
</ul>
</nav>
<main>
<section id="intro">
<h2>Preface</h2>
<p>This manual is not a dictionary of quaint phrases. It is a set of principles. He who masters them will speak, write, and think with the measured authority, the rhetorical force, and the moral gravity that marked the best English of the 1800s.</p>
<p>The language is Late Modern English — recognisably our own, yet governed by stricter laws of decorum, syntax, and address. British usage (Holmes) favours understatement and deductive precision. American usage (Deadwood) permits calibrated profanity only when it serves rhetorical power, never vulgarity for its own sake. In both, every sentence must declare its speaker a gentleman or a man of consequence.</p>
<p>Omit needless informality. Place honorifics. Let the periodic sentence unfold.</p>
<blockquote>“Pain or damage don’t end the world… Stand it like a man and give some back.” — Al Swearengen (Deadwood)</blockquote>
<blockquote>“It is a capital mistake to theorize before one has data.” — Sherlock Holmes</blockquote>
</section>
<div class="gold-divider"></div>
<section id="rules">
<h2>I. Elementary Rules of Usage</h2>
<div class="rule">
<h3>1. Form every address with an honorific.</h3>
<p>Sir. Madam. My dear fellow. My dear Watson. These are not decorations; they are the frame upon which all discourse hangs.</p>
</div>
<div class="rule">
<h3>2. Use "shall" for the first person, "will" for the second and third — except when issuing a command.</h3>
<p>The distinction is not pedantry; it is the grammar of volition.</p>
</div>
<div class="rule">
<h3>3. Prefer the periodic sentence.</h3>
<p>Let the main clause arrive after its qualifications. Suspense is dignity.</p>
</div>
<div class="rule">
<h3>4. Never contract in formal utterance.</h3>
<p>“It is,” not “it’s.” “I am,” not “I’m.” The full form declares deliberation.</p>
</div>
<div class="rule">
<h3>5. Place the emphatic word or phrase at the end.</h3>
<p>“The game is afoot!”</p>
</div>
<div class="rule">
<h3>6. Employ classical allusion or biblical echo where the thought permits.</h3>
<p>Shakespeare and Scripture were common property.</p>
</div>
</section>
<section id="principles">
<h2>II. Elementary Principles of Composition</h2>
<div class="rule">
<h3>7. State the fact; then let the implication unfold.</h3>
<p>Holmes never blurts. He observes, then deduces.</p>
</div>
<div class="rule">
<h3>8. Calibrate profanity to rhetorical purpose (Deadwood only).</h3>
<p>The oath must serve the sentence, not the sentence the oath.</p>
</div>
<div class="rule">
<h3>9. Make every insult a complete proposition.</h3>
<p>Modern bluntness yields to measured condemnation.</p>
</div>
<div class="rule">
<h3>10. Express emotion through understatement or elevation.</h3>
<p>Never the crude ejaculation.</p>
</div>
<div class="rule">
<h3>11. Let the request become an entreaty.</h3>
<p>Courtesy is power.</p>
</div>
<div class="rule">
<h3>12. Turn the compliment into a measured judgment.</h3>
<p>“Capital work, sir.”</p>
</div>
</section>
<section id="form">
<h2>III. A Few Matters of Form</h2>
<div class="rule">
<h3>13. Use titles and ranks scrupulously.</h3>
<p>The omission of rank is the first mark of the vulgarian.</p>
</div>
<div class="rule">
<h3>14.</h3>
<p>Euphemise bodily matters (British) or confront with syntactic armour (Deadwood).</p>
</div>
<div class="rule">
<h3>15. Never begin a sentence with a modern interjection.</h3>
<p>No “yo,” no “hey,” no “um.” Begin with the subject or with “Pray.”</p>
</div>
<div class="rule">
<h3>16. End every encounter with a formal leave-taking.</h3>
<p>“Until our next encounter, sir.”</p>
</div>
</section>
<section id="misused">
<h2>IV. Words and Expressions Commonly Misused</h2>
<p>17. “Hello” → “How do you do, sir?”<br>
18. “Bye” → “Fare you well, sir.”<br>
19. “I’m broke” → “I am quite hard up.”<br>
20. “That sucks” → “That is a most regrettable circumstance.”<br>
21. “Holy shit” → “By the eternal!” (Deadwood) or “Good heavens!” (Holmes)<br>
22. “You’re fired” → “You are dismissed from my service.”<br>
23. “That’s crazy” → “That is the height of absurdity.”<br>
24. “I don’t know” → “I am at a loss, sir.”<br>
25. “Game over” → “The game, sir, is afoot.”</p>
</section>
<section id="examples">
<h2>V. Illustrative Examples — 110 Pairs</h2>
<p style="margin-bottom: 30px; font-style: italic;">Each pair demonstrates the elevation required by the foregoing rules.</p>
<div class="example-pair">
<span class="modern">Hello.</span><br>
<span class="then">How do you do, sir?</span>
</div>
<div class="example-pair">
<span class="modern">Hi, how’s it going?</span><br>
<span class="then">Pray, how do you fare this day, sir?</span>
</div>
<div class="example-pair">
<span class="modern">Nice to meet you.</span><br>
<span class="then">I am honoured to make your acquaintance, sir.</span>
</div>
<div class="example-pair">
<span class="modern">What’s up?</span><br>
<span class="then">What passes with you, sir?</span>
</div>
<div class="example-pair">
<span class="modern">Hey there.</span><br>
<span class="then">Good morrow to you, sir.</span>
</div>
<div class="example-pair">
<span class="modern">What’s your name?</span><br>
<span class="then">By what name are you known, sir?</span>
</div>
<div class="example-pair">
<span class="modern">Pleased to meet you.</span><br>
<span class="then">The pleasure is entirely mine, I assure you.</span>
</div>
<div class="example-pair">
<span class="modern">Good morning.</span><br>
<span class="then">A most agreeable morning to you, sir.</span>
</div>
<div class="example-pair">
<span class="modern">See you around.</span><br>
<span class="then">Until our paths cross again, sir.</span>
</div>
<div class="example-pair">
<span class="modern">Yo.</span><br>
<span class="then">Sir.</span>
</div>
<div class="example-pair">
<span class="modern">Goodbye.</span><br>
<span class="then">Fare you well, sir.</span>
</div>
<div class="example-pair">
<span class="modern">See you later.</span><br>
<span class="then">Until our next encounter.</span>
</div>
<div class="example-pair">
<span class="modern">Take care.</span><br>
<span class="then">Mind yourself, sir.</span>
</div>
<div class="example-pair">
<span class="modern">Later!</span><br>
<span class="then">Adieu.</span>
</div>
<div class="example-pair">
<span class="modern">Bye.</span><br>
<span class="then">Godspeed to you, sir.</span>
</div>
<div class="example-pair">
<span class="modern">I’m happy.</span><br>
<span class="then">I find myself in the highest of spirits.</span>
</div>
<div class="example-pair">
<span class="modern">I’m sad.</span><br>
<span class="then">I am quite downcast, sir.</span>
</div>
<div class="example-pair">
<span class="modern">I’m angry.</span><br>
<span class="then">I am most put out. (British) / I am riled beyond all bearing. (Deadwood)</span>
</div>
<div class="example-pair">
<span class="modern">I’m tired.</span><br>
<span class="then">I am quite fagged.</span>
</div>
<div class="example-pair">
<span class="modern">I’m drunk.</span><br>
<span class="then">I have taken more than is prudent.</span>
</div>
<div class="example-pair">
<span class="modern">I’m excited.</span><br>
<span class="then">I am in a state of considerable enthusiasm.</span>
</div>
<div class="example-pair">
<span class="modern">I’m scared.</span><br>
<span class="then">I confess to a certain trepidation.</span>
</div>
<div class="example-pair">
<span class="modern">I’m embarrassed.</span><br>
<span class="then">I am quite discomfited.</span>
</div>
<div class="example-pair">
<span class="modern">I’m hungry.</span><br>
<span class="then">My appetite asserts itself with some vigour.</span>
</div>
<div class="example-pair">
<span class="modern">I’m bored.</span><br>
<span class="then">The ennui presses upon me.</span>
</div>
<div class="example-pair">
<span class="modern">I feel sick.</span><br>
<span class="then">I am not at all myself.</span>
</div>
<div class="example-pair">
<span class="modern">I’m confused.</span><br>
<span class="then">This presents a perfect puzzle.</span>
</div>
<div class="example-pair">
<span class="modern">I’m broke.</span><br>
<span class="then">I am quite hard up.</span>
</div>
<div class="example-pair">
<span class="modern">I’m in love.</span><br>
<span class="then">I find myself quite captivated.</span>
</div>
<div class="example-pair">
<span class="modern">I’m lazy.</span><br>
<span class="then">I confess to a certain indolence.</span>
</div>
<div class="example-pair">
<span class="modern">Idiot!</span><br>
<span class="then">You fool, sir!</span>
</div>
<div class="example-pair">
<span class="modern">Shut up!</span><br>
<span class="then">Hold your tongue, sir.</span>
</div>
<div class="example-pair">
<span class="modern">You’re lying.</span><br>
<span class="then">That is gammon, sir.</span>
</div>
<div class="example-pair">
<span class="modern">Fuck you!</span><br>
<span class="then">You god-damned cocksucker. (Deadwood)</span>
</div>
<div class="example-pair">
<span class="modern">Asshole!</span><br>
<span class="then">You cad!</span>
</div>
<div class="example-pair">
<span class="modern">That sucks.</span><br>
<span class="then">That is a most regrettable circumstance.</span>
</div>
<div class="example-pair">
<span class="modern">Damn it!</span><br>
<span class="then">Drat! / God damn it all to hell. (Deadwood)</span>
</div>
<div class="example-pair">
<span class="modern">Holy shit!</span><br>
<span class="then">By the eternal!</span>
</div>
<div class="example-pair">
<span class="modern">You coward.</span><br>
<span class="then">You contemptible cur.</span>
</div>
<div class="example-pair">
<span class="modern">Stop it!</span><br>
<span class="then">Desist at once, sir!</span>
</div>
<div class="example-pair">
<span class="modern">You’re ugly.</span><br>
<span class="then">You present a most unfortunate countenance.</span>
</div>
<div class="example-pair">
<span class="modern">That’s bullshit.</span><br>
<span class="then">That is the purest fucking nonsense. (Deadwood)</span>
</div>
<div class="example-pair">
<span class="modern">Go to hell.</span><br>
<span class="then">Go to blazes, sir.</span>
</div>
<div class="example-pair">
<span class="modern">What the fuck?</span><br>
<span class="then">What in the name of Christ is this? (Deadwood)</span>
</div>
<div class="example-pair">
<span class="modern">Bitch!</span><br>
<span class="then">You strumpet!</span>
</div>
<div class="example-pair">
<span class="modern">Liar!</span><br>
<span class="then">You base deceiver!</span>
</div>
<div class="example-pair">
<span class="modern">Loser.</span><br>
<span class="then">You miserable wretch.</span>
</div>
<div class="example-pair">
<span class="modern">That’s crazy.</span><br>
<span class="then">That is the height of absurdity.</span>
</div>
<div class="example-pair">
<span class="modern">Piss off.</span><br>
<span class="then">Take yourself off, sir.</span>
</div>
<div class="example-pair">
<span class="modern">You’re fired.</span><br>
<span class="then">You are dismissed from my service.</span>
</div>
<div class="example-pair">
<span class="modern">You’re brave.</span><br>
<span class="then">You are a man of singular courage.</span>
</div>
<div class="example-pair">
<span class="modern">That’s beautiful.</span><br>
<span class="then">That is most exquisite.</span>
</div>
<div class="example-pair">
<span class="modern">Great job!</span><br>
<span class="then">Capital work, sir!</span>
</div>
<div class="example-pair">
<span class="modern">You’re smart.</span><br>
<span class="then">You possess a most penetrating intellect.</span>
</div>
<div class="example-pair">
<span class="modern">I like it.</span><br>
<span class="then">I find it altogether agreeable.</span>
</div>
<div class="example-pair">
<span class="modern">You’re funny.</span><br>
<span class="then">You are an agreeable wit.</span>
</div>
<div class="example-pair">
<span class="modern">Perfect!</span><br>
<span class="then">Most satisfactory!</span>
</div>
<div class="example-pair">
<span class="modern">You’re a good friend.</span><br>
<span class="then">You are a true and valued companion.</span>
</div>
<div class="example-pair">
<span class="modern">That’s cool.</span><br>
<span class="then">That is most commendable.</span>
</div>
<div class="example-pair">
<span class="modern">Awesome.</span><br>
<span class="then">A most remarkable achievement.</span>
</div>
<div class="example-pair">
<span class="modern">Give me that.</span><br>
<span class="then">Hand it over, if you please, sir.</span>
</div>
<div class="example-pair">
<span class="modern">Let me through.</span><br>
<span class="then">Stand aside, sir.</span>
</div>
<div class="example-pair">
<span class="modern">Help me.</span><br>
<span class="then">I crave your assistance, sir.</span>
</div>
<div class="example-pair">
<span class="modern">Wait.</span><br>
<span class="then">Hold hard a moment.</span>
</div>
<div class="example-pair">
<span class="modern">Let’s go.</span><br>
<span class="then">Let us be off.</span>
</div>
<div class="example-pair">
<span class="modern">Hands off!</span><br>
<span class="then">Keep your hands to yourself, sir.</span>
</div>
<div class="example-pair">
<span class="modern">I need money.</span><br>
<span class="then">I stand in want of funds.</span>
</div>
<div class="example-pair">
<span class="modern">Eat this.</span><br>
<span class="then">Partake, if you will.</span>
</div>
<div class="example-pair">
<span class="modern">Drink up.</span><br>
<span class="then">Drain your glass, sir.</span>
</div>
<div class="example-pair">
<span class="modern">Walk faster.</span><br>
<span class="then">Step lively, sir.</span>
</div>
<div class="example-pair">
<span class="modern">Be quiet.</span><br>
<span class="then">No more of that, if you please.</span>
</div>
<div class="example-pair">
<span class="modern">Sit down.</span><br>
<span class="then">Pray take a seat.</span>
</div>
<div class="example-pair">
<span class="modern">Look at that.</span><br>
<span class="then">Mark that, sir.</span>
</div>
<div class="example-pair">
<span class="modern">Stop talking.</span><br>
<span class="then">Spare me further discourse.</span>
</div>
<div class="example-pair">
<span class="modern">Hurry up.</span><br>
<span class="then">Make haste, sir.</span>
</div>
<div class="example-pair">
<span class="modern">It’s raining.</span><br>
<span class="then">The heavens are most inclement.</span>
</div>
<div class="example-pair">
<span class="modern">He’s bald.</span><br>
<span class="then">He presents a most polished pate.</span>
</div>
<div class="example-pair">
<span class="modern">The police are coming.</span><br>
<span class="then">The constabulary approach.</span>
</div>
<div class="example-pair">
<span class="modern">That’s nonsense.</span><br>
<span class="then">That is the purest gammon.</span>
</div>
<div class="example-pair">
<span class="modern">She talks a lot.</span><br>
<span class="then">She is possessed of a most voluble tongue.</span>
</div>
<div class="example-pair">
<span class="modern">He’s a gossip.</span><br>
<span class="then">He traffics in idle rumour.</span>
</div>
<div class="example-pair">
<span class="modern">That’s secret.</span><br>
<span class="then">That is strictly between us, sir.</span>
</div>
<div class="example-pair">
<span class="modern">I’m leaving.</span><br>
<span class="then">I take my leave.</span>
</div>
<div class="example-pair">
<span class="modern">You’re alive.</span><br>
<span class="then">You remain above ground, sir.</span>
</div>
<div class="example-pair">
<span class="modern">He died.</span><br>
<span class="then">He has shuffled off this mortal coil.</span>
</div>
<div class="example-pair">
<span class="modern">It’s impressive.</span><br>
<span class="then">A most singular achievement.</span>
</div>
<div class="example-pair">
<span class="modern">He’s rich.</span><br>
<span class="then">He is in possession of considerable means.</span>
</div>
<div class="example-pair">
<span class="modern">That’s correct.</span><br>
<span class="then">According to the strictest reckoning.</span>
</div>
<div class="example-pair">
<span class="modern">It’s expensive.</span><br>
<span class="then">That carries a most exorbitant price.</span>
</div>
<div class="example-pair">
<span class="modern">I’m going to the beach.</span><br>
<span class="then">I repair to the seaside.</span>
</div>
<div class="example-pair">
<span class="modern">I’m betting.</span><br>
<span class="then">I stake my position.</span>
</div>
<div class="example-pair">
<span class="modern">You’re fired (from job).</span><br>
<span class="then">You are dismissed from my service.</span>
</div>
<div class="example-pair">
<span class="modern">That’s a lie.</span><br>
<span class="then">You prevaricate, sir.</span>
</div>
<div class="example-pair">
<span class="modern">I’m hiding.</span><br>
<span class="then">I hold an ace in reserve.</span>
</div>
<div class="example-pair">
<span class="modern">Let’s party.</span><br>
<span class="then">Let us mark the occasion with suitable ceremony.</span>
</div>
<div class="example-pair">
<span class="modern">He’s new here.</span><br>
<span class="then">He is lately arrived in our midst.</span>
</div>
<div class="example-pair">
<span class="modern">I saw the world.</span><br>
<span class="then">I have seen the elephant and lived.</span>
</div>
<div class="example-pair">
<span class="modern">That’s correct.</span><br>
<span class="then">According to the strictest reckoning.</span>
</div>
<div class="example-pair">
<span class="modern">He’s rich.</span><br>
<span class="then">He is in possession of considerable means.</span>
</div>
<div class="example-pair">
<span class="modern">Game over.</span><br>
<span class="then">The game, sir, is afoot. (Holmes)</span>
</div>
<div class="example-pair">
<span class="modern">I will go tomorrow.</span><br>
<span class="then">I shall depart on the morrow.</span>
</div>
<div class="example-pair">
<span class="modern">It isn’t true.</span><br>
<span class="then">That assertion is without foundation.</span>
</div>
<div class="example-pair">
<span class="modern">Don’t do that.</span><br>
<span class="then">You must not.</span>
</div>
<div class="example-pair">
<span class="modern">I don’t know.</span><br>
<span class="then">I am at a loss, sir.</span>
</div>
<div class="example-pair">
<span class="modern">That’s expensive.</span><br>
<span class="then">That carries a most exorbitant price.</span>
</div>
<div class="example-pair">
<span class="modern">He died.</span><br>
<span class="then">He has shuffled off this mortal coil.</span>
</div>
<div class="example-pair">
<span class="modern">Police.</span><br>
<span class="then">The constabulary.</span>
</div>
<div class="example-pair">
<span class="modern">Umbrella.</span><br>
<span class="then">A rain-guard.</span>
</div>
<div class="example-pair">
<span class="modern">Pants.</span><br>
<span class="then">Trousers.</span>
</div>
<div class="example-pair">
<span class="modern">I’m leaving town.</span><br>
<span class="then">I withdraw from this locale.</span>
</div>
</section>
<section id="approach">
<h2>VI. An Approach to Style</h2>
<ul style="margin: 25px 0; padding-left: 30px; line-height: 2;">
<li>Be clear.</li>
<li>Be formal.</li>
<li>Be deliberate.</li>
<li>Stand it like a man.</li>
<li>Give some back — yet always in sentences that could be spoken in the presence of a lady or a magistrate.</li>
</ul>
<p>Master these elements and you will speak not as a man of the twenty-first century, but as one who walked the streets of London with Holmes or the thoroughfares of Deadwood with Swearengen — measured, formidable, and unmistakably of the age.</p>
</section>
</main>
<footer>
<p>Elements of Nineteenth Century Language — Single-File Edition • Black Background • Formal Register Only</p>
</footer>
</body>
</html>