-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadaptations.html
142 lines (142 loc) · 5.97 KB
/
adaptations.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
<!DOCTYPE html>
<html>
<head>
<title>Adaptations</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
<header>
<h1>Adaptations</h1>
</header>
<nav>
<ul class="flex">
<li><a href="index.html">Home</a></li>
<li><a href="bio.html">Author Bio</a></li>
<li><a href="characters.html">Characters</a></li>
<li><a href="adaptations.html">Adaptations</a></li>
<li><a href="form.html">Newsletter</a></li>
</ul>
</nav>
<main>
<article>
<h2 class="bg-heading">Adaptations in Other Media</h2>
<p>
Berserk has seen a number of
<a
href="https://en.wikipedia.org/wiki/Berserk_(manga)#Related_media"
>adaptations</a
>
over the years. It's been made into anime series,
feature-length movies, video games and spin-off novels
</p>
<section>
<h3 class="bg-heading">Anime (1997)</h3>
<video
width="720"
type="video/mp4"
class="media"
id="video_embed"
controls
>
<source src="BerserkOpeningHD.mp4" />
</video>
<aside id="video_aside">
<p>
The first animated adaptation was produced by
Oriental Light and Magic and directed by Naohito
Takahashi.
</p>
<p>
This series covers the story of the "Black
Swordsman" and "Golden Age" arcs.
</p>
<p>
The 1997 anime produced two licensed video game
adaptations with such catchy titles as:
<i
>Berserk Millennium Falcon Arc: Chapter of the
Flowers of Oblivion</i
>
and
<i
>Berserk: Millennium Falcon Arc - Chapter of the
Holy Demon War</i
>
</p>
</aside>
<h4 class="bg-heading">
Berserk Original Sound Track - "Guts' Theme"
</h4>
<audio controls class="media" id="audio_embed">
<source src="Gats.mp3" type="audio/mpeg" />
</audio>
<aside id="audio_aside">
<p>
Like this track? What if you could listen to it
looped for an hour? I think it would sound something
like this:
</p>
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/f26KyGr6y8w"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
class="media"
allowfullscreen
></iframe>
</aside>
</section>
<section class="clear">
<h3>Berserk: The Golden Age Arc (2012-2013)</h3>
<p>
This series of films was
<a
href="https://www.cbr.com/berserk-every-anime-adaptation-chronological-order/"
>intended to be a re-adaptation of the 1997
series</a
>, split up over 3 feature-length movies:
</p>
<ul>
<li>
Berserk: The Golden Age Arc I - The Egg Of The King
(2012)
</li>
<li>
Berserk: The Golden Age Arc II - The Battle For
Doldrey (2012)
</li>
<li>
Berserk: The Golden Age Arc III - The Advent (2013)
</li>
</ul>
</section>
<section class="clear">
<h3>Berserk (2016)</h3>
<p>
The most recent animated series was released in 2016 as
a kind of sequel to the Golden Age Arc movies.
</p>
<p>
This version got its second season in 2017, although
some
<a
href="https://www.cbr.com/berserk-every-anime-adaptation-chronological-order/"
>consider it a separate series.</a
>
</p>
</section>
</article>
</main>
<footer>
<p>
This site is authored and maintained by Chris McKenna. It is not
an official website of the Maricopa County Community College
District, and Maricopa is not responsible for the content of
this site.
</p>
</footer>
</body>
</html>