-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
8645 lines (7969 loc) · 282 KB
/
index.html
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
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>The History of Tamriel</title>
<meta name="description" content="The History of Tamriel">
<link href="https://fonts.googleapis.com/css?family=Fondamento" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<link rel="stylesheet" href="main.css">
<script type=text/javascript src="animation.js"></script>
</head>
<div id="Header" class="Header">
<li><a href="/index.html" class="logo">The History of Tamriel</a></li>
<li><a href="#" class="TopNavBarButton">Map</a></li>
<li><a href="about.html" class="TopNavBarButton">About</a></li>
</div>
<div id="mySidenav" class="sidenav">
<div id="SidebarLinks" class="starthidden">
<a href="javascript:void(0)" id="Provinces" onclick="openProvinces()">Provinces ◢</a>
<div id="SidebarLinks2" class="starthidden">
<a style="background-image: linear-gradient(90deg, rgb(50, 30, 0) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/BlackMarsh.html">Black Marsh</a>
<a style="background-image: linear-gradient(90deg, rgb(60, 20, 0) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/HighRock.html">High Rock</a>
<a style="background-image: linear-gradient(90deg, rgb(80, 20, 0) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/Hammerfell.html">Hammerfell</a>
<a style="background-image: linear-gradient(90deg, rgb(60, 40, 0) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/Valenwood.html">Valenwood</a>
<a style="background-image: linear-gradient(90deg, rgb(60, 70, 0) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/Elsweyr.html">Elsweyr</a>
<a style="background-image: linear-gradient(90deg, rgb(90, 90, 0) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/Cyrodiil.html">Cyrodiil</a>
<a style="background-image: linear-gradient(90deg, rgb(40, 90, 100) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/SummersetIsles.html">Summerset Isles</a>
<a style="background-image: linear-gradient(90deg, rgb(0, 40, 80) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/Skyrim.html">Skyrim</a>
<a style="background-image: linear-gradient(90deg, rgb(70, 20, 70) 0%, rgb(51, 51, 51) 100%); padding-left: 50px;" href="Provinces/Morrowind.html">Morrowind</a><br>
</div>
<a href="#Dawn Era">Dawn Era</a>
<a href="#Merethic Era">Merethic Era</a>
<a href="#First Era">First Era</a>
<a href="#Second Era">Second Era</a>
<a href="#Third Era">Third Era</a>
<a href="#Fourth Era">Fourth Era</a>
</div>
<a href="javascript:void(0)" id="myclosebtn" class="closebtn noselect" onclick="openNav()">☰</a>
</div>
<div id="main">
<body>
<p style="text-align:left; color: #EEE;
font-weight: 600;
line-height: 1.3;
font-family: 'Fondamento', cursive;
font-size: 32px">
The History of all of Tamriel:
<?php echo "TEST";?>
<span style="float:right;"><a href="http://elderscrolls.wikia.com/wiki/Timeline" class="button">Read on wiki</a></span>
<ul class="timeline">
<li><div class="tldate" id="Dawn Era" >Dawn Era</div></li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The brothers <a href="http://elderscrolls.wikia.com/wiki/Anu" title="Anu">Anu</a> and <a href="http://elderscrolls.wikia.com/wiki/Padomay" title="Padomay">Padomay</a> enter into the <a href="http://elderscrolls.wikia.com/wiki/Void" title="Void">Void</a>, and time begins.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
They give birth to their own Souls, <a href="http://elderscrolls.wikia.com/wiki/Anui-El" title="Anui-El">Anui-El</a> and <a href="http://elderscrolls.wikia.com/wiki/Sithis_(Deity)" title="Sithis (Deity)">Sithis</a>, whose interplay creates the <a href="http://elderscrolls.wikia.com/wiki/Aurbis" title="Aurbis">Aurbis</a>.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/Lorkhan" title="Lorkhan">Lorkhan</a> and <a href="http://elderscrolls.wikia.com/wiki/Auriel" title="Auriel" class="mw-redirect">Auriel</a> are the first spirits born into the Aurbis, Lorkhan wanders and Auriel creates time.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The Original Spirits or <a href="http://elderscrolls.wikia.com/wiki/Et%27Ada" title="Et'Ada">et'Ada</a> emerge within the Aurbis are either aligned with Anu (Anuic spirits) or Padomay (Padomaic spirits).
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
Lorkhan, a Padomaic spirit, travels the Aurbis and conceives the concept that <a href="http://elderscrolls.wikia.com/wiki/Mundus" title="Mundus">Mundus</a> should be created.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
Lorkhan then tricks/convinces other et'Ada to join him. Those that do become the <a href="http://elderscrolls.wikia.com/wiki/Aedra" title="Aedra">Aedra</a> and those that don't become the <a href="http://elderscrolls.wikia.com/wiki/Daedra" title="Daedra">Daedra</a>.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The Aedra create 12 worlds of creation. Some creation myths believe each world is a God. These 12 worlds are molded together to create <a href="http://elderscrolls.wikia.com/wiki/Nirn" title="Nirn">Nirn</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
Many of the Aedra die during the creation with some becoming mortals to ensure the continuation of life on Mundus whilst some become the <a href="http://elderscrolls.wikia.com/wiki/Ehlnofey" title="Ehlnofey">Ehlnofey</a> or "Earthbones," the Laws of Nature.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
Many of the Aedra flee back to <a href="http://elderscrolls.wikia.com/wiki/Aetherius" title="Aetherius">Aetherius</a>, which is a part of Aurbis, and become the Magne-ge, tearing holes in Oblivion.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
Auri-El establishes the first kingdoms of the Old Ehlnofey on <a href="http://elderscrolls.wikia.com/wiki/Atmora" title="Atmora">Atmora</a> and the supposed land <a href="http://elderscrolls.wikia.com/wiki/Aldmeris" title="Aldmeris">Aldmeris</a>. These lands are where the <a href="http://elderscrolls.wikia.com/wiki/Aldmer" title="Aldmer">Aldmer</a> originate.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
A large number of Aedra are disappointed and angry with the creation of Mundus and seek revenge. These include the ancestors of Elves - the Old Ehlnofey, whose leader was <a href="http://elderscrolls.wikia.com/wiki/Auri-El" title="Auri-El">Auri-El</a> and whose heroes included <a href="http://elderscrolls.wikia.com/wiki/Trinimac" title="Trinimac">Trinimac</a>, <a href="http://elderscrolls.wikia.com/wiki/Phynaster_(Deity)" title="Phynaster (Deity)">Phynaster</a> and <a href="http://elderscrolls.wikia.com/wiki/Syrabane" title="Syrabane">Syrabane</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
Auri-El sought out Lorkhan in battle and warred with him. Lorkhan's followers included the ancestors of Man—the Wandering Ehlnofey and whose heroes included <a href="http://elderscrolls.wikia.com/wiki/Kyne" title="Kyne">Kyne</a>, <a href="http://elderscrolls.wikia.com/wiki/Tsun" title="Tsun">Tsun</a>, <a href="http://elderscrolls.wikia.com/wiki/Stuhn" title="Stuhn">Stuhn</a>, <a href="http://elderscrolls.wikia.com/wiki/Jhunal" title="Jhunal">Jhunal</a>.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/Atmora" title="Atmora">Atmora</a> is conquered by the armies of man.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The great war ends when Trinimac tears Lorkhan's heart out and Auri-El fires it into the sea with his bow.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The war causes the mega-continent on Nirn to become flooded and fracture into smaller continents and islands.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The lands inhabited by the Wandering Ehlnofey, which include <a href="http://elderscrolls.wikia.com/wiki/Akavir_(Continent)" title="Akavir (Continent)">Akavir</a>, <a href="http://elderscrolls.wikia.com/wiki/Atmora" title="Atmora">Atmora</a>, and <a href="http://elderscrolls.wikia.com/wiki/Yokuda" title="Yokuda">Yokuda</a>, become isolated. These lands are where the <a href="http://elderscrolls.wikia.com/wiki/Tsaesci" title="Tsaesci">Tsaesci</a>, <a href="http://elderscrolls.wikia.com/wiki/Atmoran" title="Atmoran">Atmorans</a> and <a href="http://elderscrolls.wikia.com/wiki/Yokudan" title="Yokudan" class="mw-redirect">Yokudans</a> originate.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
Some Wandering Ehlnofey remain on <a href="http://elderscrolls.wikia.com/wiki/Tamriel" title="Tamriel">Tamriel</a>, they become the <a href="http://elderscrolls.wikia.com/wiki/Nede" title="Nede">Nedes</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The Old Ehlnofey remain on the supposed land <a href="http://elderscrolls.wikia.com/wiki/Aldmeris" title="Aldmeris">Aldmeris</a> and become the <a href="http://elderscrolls.wikia.com/wiki/Aldmer" title="Aldmer">Aldmer</a>.
</p>
</div>
</div>
</li>
<li><div id="Merethic Era" class="tldate">Merethic Era</div></li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Circa ME 2500</h4>
</div>
<div class="tl-body">
<p>
Supposed date of construction of the <a href="http://elderscrolls.wikia.com/wiki/Direnni_Tower" title="Direnni Tower">Adamantine Tower</a> (also known as the <a href="http://elderscrolls.wikia.com/wiki/Direnni_Tower" title="Direnni Tower">Direnni Tower</a>) on <a href="http://elderscrolls.wikia.com/wiki/Balfiera" title="Balfiera" class="mw-redirect">Balfiera Island</a> in <a href="http://elderscrolls.wikia.com/wiki/High_Rock" title="High Rock">High Rock</a>, the oldest known structure of <a href="http://elderscrolls.wikia.com/wiki/Tamriel" title="Tamriel">Tamriel</a>. Earliest historical date in unpublished Elvish chronicles.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>Early Merethic Era</h4>
</div>
<div class="tl-body">
<p>
Aboriginal beastpeoples (ancestors of the <a href="http://elderscrolls.wikia.com/wiki/Khajiit" title="Khajiit">Khajiit</a>, <a href="http://elderscrolls.wikia.com/wiki/Argonian" title="Argonian">Argonian</a>, and other beastfolk) live in preliterate communities throughout Tamriel.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Middle Merethic Era</h4>
</div>
<div class="tl-body">
<p>
The <a href="http://elderscrolls.wikia.com/wiki/Aldmer" title="Aldmer">Aldmer</a> leave the supposed doomed and now-lost continent of <a href="http://elderscrolls.wikia.com/wiki/Aldmeris" title="Aldmeris">Aldmeris</a> (also known as 'Old Ehlnofey') and settle in Tamriel. First colonies are distributed widely along the entire coast of Tamriel. Later, inland settlements were founded primarily in fertile lowlands in southwest and central Tamriel.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The sophisticated, literate, and technologically advanced Aldmeri culture drove the primitive <a href="http://elderscrolls.wikia.com/wiki/Beastfolk" title="Beastfolk">beastfolk</a> into the jungles, marshes, mountains, and wastelands.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The Adamantine Tower is rediscovered and captured by the <a href="http://elderscrolls.wikia.com/wiki/Direnni_Bloodline" title="Direnni Bloodline">Direnni</a>, a prominent and powerful Aldmeri clan. <a href="http://elderscrolls.wikia.com/wiki/Crystal_Tower_(Location)" title="Crystal Tower (Location)">Crystal Tower</a> is built on <a href="http://elderscrolls.wikia.com/wiki/Summerset_Isle" title="Summerset Isle" class="mw-redirect">Summerset Isle</a> and, later, <a href="http://elderscrolls.wikia.com/wiki/White-Gold_Tower" title="White-Gold Tower">White-Gold Tower</a> in <a href="http://elderscrolls.wikia.com/wiki/Cyrodiil" title="Cyrodiil">Cyrodiil</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
One of these Aldmeri Explorers, <a href="http://elderscrolls.wikia.com/wiki/Torval_the_Pilot" title="Torval the Pilot" class="mw-redirect">Torval the Pilot</a>, explores and charts Tamriel sea-lanes and the <a href="http://elderscrolls.wikia.com/wiki/Niben_River" title="Niben River">River Niben</a>, located in southern Tamriel. He sails deep into central Cyrodiil, and acquires the Eight Islands (the site of White Gold Tower) from the beastfolk natives for the secret of literacy.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
Aldmeri explorers map the coasts of <a href="http://elderscrolls.wikia.com/wiki/Vvardenfell" title="Vvardenfell">Vvardenfell</a>, building the First Era High Elven wizard towers at Ald Redaynia, Bal Fell, Tel Aruhn, and Tel Mora in <a href="http://elderscrolls.wikia.com/wiki/Morrowind" title="Morrowind">Morrowind</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The <a href="http://elderscrolls.wikia.com/wiki/Ayleid" title="Ayleid">Ayleids</a> flourish in the jungles surrounding White Gold Tower (present day Cyrodiil). Ayleids, also known as the Heartland High Elves, preserved the Dawn Era magicks and language of the Ehlnofey.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
Ostensibly a tribute-land to the High King of <a href="http://elderscrolls.wikia.com/wiki/Alinor" title="Alinor">Alinor</a>, Cyrodiil was often so isolated from the Summerset Isles as to be its own sovereign nation.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>Late Middle Merethic Era</h4>
</div>
<div class="tl-body">
<p>
The <a href="http://elderscrolls.wikia.com/wiki/Dwemer" title="Dwemer">Dwemer</a>, a free-thinking, reclusive Elven clan devoted to the secrets of science, engineering, and alchemy, established underground cities and communities in the mountain range (later the <a href="http://elderscrolls.wikia.com/wiki/Velothi_Mountains" title="Velothi Mountains">Velothi Mountains</a>) separating modern Skyrim and Resdayn/Morrowind.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The Late Middle Merethic Era is also the period of the High Velothi Culture.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The <a href="http://elderscrolls.wikia.com/wiki/Chimer" title="Chimer">Chimer</a> (ancestors of the modern <a href="http://elderscrolls.wikia.com/wiki/Dunmer" title="Dunmer">Dunmer</a>, or Dark Elves), dynamic, ambitious, long-lived Elven clans devoted to fundamentalist ancestor worship, followed the Prophet <a href="http://elderscrolls.wikia.com/wiki/Veloth" title="Veloth">Veloth</a> out of ancestral Elven homelands to settle in the lands now known as Morrowind.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
Despising the secular culture and profane practices of the Dwemer, the Chimer also coveted the lands and resources of the Dwemer, and for centuries provoked them with minor raids and territorial disputes.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/Trinimac" title="Trinimac">Trinimac</a> (strongest of the Altmeri ancestor spirits) and his people (who became the <a href="http://elderscrolls.wikia.com/wiki/Orsimer" title="Orsimer">Orsimer</a> or the Pariah Folk) try to halt Velothi dissident movement. However, Daedric Prince <a href="http://elderscrolls.wikia.com/wiki/Boethiah" title="Boethiah">Boethiah</a>, as one of the masterminds of the movement, eats Trinimac. Trinimac's body and spirit are corrupted, and he emerges as Daedric Prince <a href="http://elderscrolls.wikia.com/wiki/Malacath" title="Malacath">Malacath</a>. The rest of his people are changed as well. They are now known as Orcs.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>Late Merethic Era</h4>
</div>
<div class="tl-body">
<p>
Velothi high culture disappears on Vvardenfell Island. The earliest Dwemer Freehold colonies date from this period.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
Degenerate Velothi devolves into tribal cultures, which, in time, evolves into the modern Great Houses of Morrowind, or persists as the barbarian <a href="http://elderscrolls.wikia.com/wiki/Ashlander" title="Ashlander">Ashlander</a> tribes. The only surviving traces of this tribal culture are scattered Velothi towers and Ashlander nomads on Vvardenfell Island. The original First Era High Elven wizard towers along the coasts of Tamriel are also abandoned about this time.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The proto-Nords in the final migration from <a href="http://elderscrolls.wikia.com/wiki/Atmora" title="Atmora">Atmora</a> (also known as 'Altmora' or 'the Elder Wood' in <a href="http://elderscrolls.wikia.com/wiki/Aldmeris" title="Aldmeris">Aldmeris</a>) settle in northern Tamriel. Nordic hero <a href="http://elderscrolls.wikia.com/wiki/Ysgramor_(Lore)" title="Ysgramor (Lore)" class="mw-redirect">Ysgramor</a>, leader of a great colonizing fleet to Tamriel, develops a runic transcription of Nordic speech based on Elvish principles, and is the first human historian.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
Ysgramor's fleet lands at <a href="http://elderscrolls.wikia.com/wiki/Hsaarik_Head" title="Hsaarik Head">Hsaarik Head</a> at the extreme northern tip of Skyrim's Broken Cape.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The Nords build there the legendary city of <a href="http://elderscrolls.wikia.com/wiki/Saarthal" title="Saarthal">Saarthal</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The Elves drive the Men away during the <a href="http://elderscrolls.wikia.com/wiki/Night_of_Tears" title="Night of Tears">Night of Tears</a>, but Ysgramor soon returns with his Five Hundred Companions.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>Late Merethic Era - Circa 1E 660</h4>
</div>
<div class="tl-body">
<p>
An immortal hero, warrior, sorcerer, and king variously known as <a href="http://elderscrolls.wikia.com/wiki/Pelinal_Whitestrake" title="Pelinal Whitestrake">Pelinal Whitestrake</a>, Harrald Hairy Breeks, Ysmir, <a href="http://elderscrolls.wikia.com/wiki/Wulfharth" title="Wulfharth">Wulfharth</a>, Hans the Fox, etc., wanders Tamriel, gathering armies, conquering lands, ruling, then abandoning his kingdoms to wander again.
</p>
</div>
</div>
</li>
<li><div id="First Era" class="tldate">First Era</div></li>
<li>
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/Daggerfall" title="Daggerfall">Daggerfall</a> defeats the <a href="http://elderscrolls.wikia.com/wiki/Akaviri_Invasion" title="Akaviri Invasion" class="mw-redirect">Akaviri Invasion</a> ("If Daggerfall had not spent its first thousand years preparing for the battles of the next thousand years, it is indeed conceivable that the Iliac Bay today might be <a href="http://elderscrolls.wikia.com/wiki/Akaviri" title="Akaviri">Akaviri</a>.")
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 0</h4>
</div>
<div class="tl-body">
<p>
King <a href="http://elderscrolls.wikia.com/wiki/Eplear" title="Eplear">Eplear</a> begins the <a href="http://elderscrolls.wikia.com/wiki/First_Era" title="First Era">First Era</a> by founding the <a href="http://elderscrolls.wikia.com/wiki/Camoran_Dynasty" title="Camoran Dynasty">Camoran Dynasty</a>.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 20</h4>
</div>
<div class="tl-body">
<p>
The earliest recordings of the <a href="http://elderscrolls.wikia.com/wiki/Psijic_Order" title="Psijic Order">Psijic Order</a> is recorded, telling the tale of the renowned Breton sage and author Voernet, traveling to the Isle of Artaeum to meet with <a href="http://elderscrolls.wikia.com/wiki/Iachesis" title="Iachesis">Iachesis</a>, the Ritemaster of the Psijics.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 68</h4>
</div>
<div class="tl-body">
<p>
The last visit from <a href="http://elderscrolls.wikia.com/wiki/Atmora" title="Atmora">Atmora</a> to <a href="http://elderscrolls.wikia.com/wiki/Tamriel" title="Tamriel">Tamriel</a> occurs: two ships, largely laden with corpses.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 113</h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/Harald" title="Harald">Harald</a> is born. He later becomes the first Nordic ruler.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 139</h4>
</div>
<div class="tl-body">
<p>
King <a href="http://elderscrolls.wikia.com/wiki/Harald" title="Harald">Harald</a> orders a campaign against the remaining <a href="http://elderscrolls.wikia.com/wiki/Snow_Elves" title="Snow Elves" class="mw-redirect">Snow Elves</a> in the region near <a href="http://elderscrolls.wikia.com/wiki/Lake_Honrich" title="Lake Honrich">Lake Honrich</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
One of the last remnants of the <a href="http://elderscrolls.wikia.com/wiki/Dragon_Cult" title="Dragon Cult">Dragon Cult</a> is discovered in the secluded monastery of <a href="http://elderscrolls.wikia.com/wiki/Forelhost" title="Forelhost">Forelhost</a> by one of King Harald's armies.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 140</h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/Skorm_Snow-Strider" title="Skorm Snow-Strider">Skorm Snow-Strider</a> finds Forelhost devoid of life, the cultists previously inhabiting the fortress having slit their own wrists or been poisoned. He loses half his men to poisoned water found within the monastery.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 143</h4>
</div>
<div class="tl-body">
<p>
King <a href="http://elderscrolls.wikia.com/wiki/Harald" title="Harald">Harald</a> conquers Skyrim.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 198</h4>
</div>
<div class="tl-body">
<p>
The <a href="http://elderscrolls.wikia.com/wiki/Scouring_of_Wendelbeck?action=edit&redlink=1" class="new" title="Scouring of Wendelbeck (page does not exist)">Scouring of Wendelbeck</a>, a battle during the <a href="http://elderscrolls.wikia.com/wiki/Narfinsel_Schism" title="Narfinsel Schism">Narfinsel Schism</a>, occurs, marking the war's climax.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 200</h4>
</div>
<div class="tl-body">
<p>
The <a href="http://elderscrolls.wikia.com/wiki/Tamrilean_Tractates" title="Tamrilean Tractates">Tamrilean Tractates</a> are written.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 221</h4>
</div>
<div class="tl-body">
<p>
King <a href="http://elderscrolls.wikia.com/wiki/Harald" title="Harald">Harald</a> dies at 108 years of age.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The <a href="http://elderscrolls.wikia.com/wiki/Moot" title="Moot">Moot</a> is created.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/Hjalmer" title="Hjalmer">Hjalmer</a>, the son of King Harald, takes his throne.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 221+</h4>
</div>
<div class="tl-body">
<p>
In the years following King Harald's death, <a href="http://elderscrolls.wikia.com/wiki/Dwemer" title="Dwemer">Dwemer</a> of Skyrim discovered a considerable source of raw <a href="http://elderscrolls.wikia.com/wiki/Aetherium" title="Aetherium">Aetherium</a> in <a href="http://elderscrolls.wikia.com/wiki/Blackreach" title="Blackreach">Blackreach</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
An alliance between four <a href="http://elderscrolls.wikia.com/wiki/Dwemer" title="Dwemer">Dwemer</a> cities of <a href="http://elderscrolls.wikia.com/wiki/Arkngthamz" title="Arkngthamz">Arkngthamz</a>, <a href="http://elderscrolls.wikia.com/wiki/Raldbthar" title="Raldbthar">Raldbthar</a>, <a href="http://elderscrolls.wikia.com/wiki/Mzulft" title="Mzulft">Mzulft</a>, and Bthar-zel (now known as <a href="http://elderscrolls.wikia.com/wiki/Deep_Folk_Crossing" title="Deep Folk Crossing">Deep Folk Crossing</a>) is created to oversee the extraction, processing, and study of <a href="http://elderscrolls.wikia.com/wiki/Aetherium" title="Aetherium">Aetherium</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The Dwemer construct the <a href="http://elderscrolls.wikia.com/wiki/Aetherium_Forge" title="Aetherium Forge">Aetherium Forge</a> under the city of <a href="http://elderscrolls.wikia.com/wiki/Ruins_of_Bthalft" title="Ruins of Bthalft">Bthalft</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
The <a href="http://elderscrolls.wikia.com/wiki/Aetherium_Wars" title="Aetherium Wars">Aetherium Wars</a> take place between the Dwemer city states of Skyrim. It lasts for several decades.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 222</h4>
</div>
<div class="tl-body">
<p>
King <a href="http://elderscrolls.wikia.com/wiki/Hjalmer" title="Hjalmer">Hjalmer</a> dies.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
Rule of Nordic <a href="http://elderscrolls.wikia.com/wiki/High_King" title="High King">High King</a> <a href="http://elderscrolls.wikia.com/wiki/Vrage" title="Vrage">Vrage</a> the Gifted begins, right after the death of <a href="http://elderscrolls.wikia.com/wiki/Hjalmer" title="Hjalmer">Hjalmer</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 227</h4>
</div>
<div class="tl-body">
<p>
The <a href="http://elderscrolls.wikia.com/wiki/Gradual_Massacre?action=edit&redlink=1" class="new" title="Gradual Massacre (page does not exist)">Gradual Massacre</a> begins.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 240</h4>
</div>
<div class="tl-body">
<p>
King <a href="http://elderscrolls.wikia.com/wiki/Vrage" title="Vrage">Vrage</a> begins the <a href="http://elderscrolls.wikia.com/wiki/Skyrim_Conquests" title="Skyrim Conquests">Skyrim Conquests</a>, which involves the annexation of <a href="http://elderscrolls.wikia.com/wiki/Morrowind" title="Morrowind">Morrowind</a> and <a href="http://elderscrolls.wikia.com/wiki/High_Rock" title="High Rock">High Rock</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 240+</h4>
</div>
<div class="tl-body">
<p>
At some point after 1E 240, King <a href="http://elderscrolls.wikia.com/wiki/Gellir" title="Gellir">Gellir</a> becomes High King of Skyrim and conquers the weakened Dwemer city states across the land.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 242</h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/Alessia" title="Alessia">Alessia</a>, her demigod lover, Morihaus-Breath-of-Kyne, and Pelinal Whitestrake, start the <a href="http://elderscrolls.wikia.com/wiki/Cyrodiil" title="Cyrodiil">Cyrodiilic</a> human uprising against the <a href="http://elderscrolls.wikia.com/wiki/Ayleid" title="Ayleid">Ayleid</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 243</h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/White-Gold_Tower" title="White-Gold Tower">White-Gold Tower</a> falls. This is seen as the symbolic end of the <a href="http://elderscrolls.wikia.com/wiki/Ayleid" title="Ayleid">Ayleid</a> Empire.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/Alessian_Empire" title="Alessian Empire">Alessian Empire</a> of <a href="http://elderscrolls.wikia.com/wiki/Cyrodiil" title="Cyrodiil">Cyrodiil</a> is officially formed. (The "First Empire")
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 246</h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/Daggerfall" title="Daggerfall">Daggerfall</a> is founded as the capital in <a href="http://elderscrolls.wikia.com/wiki/Iliac_Bay" title="Iliac Bay">Iliac Bay</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 263</h4>
</div>
<div class="tl-body">
<p>
Several <a href="http://elderscrolls.wikia.com/wiki/Ayleid" title="Ayleid">Ayleid</a> princes continue to rule, as vassals of the new Empress. From here until <a href="#1E_498">1E 498</a>, Ayleids would continue to have minor influence, in what can be called the "Late Ayleid Period."
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 266</h4>
</div>
<div class="tl-body">
<p>
The <a href="http://elderscrolls.wikia.com/wiki/Apotheosis_(Term)" title="Apotheosis (Term)">Apotheosis</a> of <a href="http://elderscrolls.wikia.com/wiki/Alessia" title="Alessia">Alessia</a>.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/Alessia" title="Alessia">Alessian</a> articles and Calendars begin from this year.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel noarrow">
<div class="tl-heading">
<h4></h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/Belharza_the_Man-Bull" title="Belharza the Man-Bull" class="mw-redirect">Belharza the Man-Bull</a> becomes the Second Emperor of the <a href="http://elderscrolls.wikia.com/wiki/Alessian_Empire" title="Alessian Empire">Alessian Empire</a>.
</p>
</div>
</div>
</li>
<li class="timeline-inverted">
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 340</h4>
</div>
<div class="tl-body">
<p>
The <a href="http://elderscrolls.wikia.com/wiki/Bosmer" title="Bosmer">Bosmer</a> <a href="http://elderscrolls.wikia.com/wiki/Camoran_Dynasty" title="Camoran Dynasty">Camoran Dynasty</a> of <a href="http://elderscrolls.wikia.com/wiki/Valenwood" title="Valenwood">Valenwood</a> forms a treaty with the <a href="http://elderscrolls.wikia.com/wiki/Alessian_Order" title="Alessian Order">Alessian Order</a>.
</p>
</div>
</div>
</li>
<li>
<div class="timeline-panel">
<div class="tl-heading">
<h4>1E 355</h4>
</div>
<div class="tl-body">
<p>
<a href="http://elderscrolls.wikia.com/wiki/Clan_Direnni" title="Clan Direnni" class="mw-redirect">Clan Direnni</a> rises to power in <a href="http://elderscrolls.wikia.com/wiki/High_Rock" title="High Rock">High Rock</a>.
</p>
</div>
</div>