This repository has been archived by the owner on Mar 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Eureka Seven.html
174 lines (160 loc) · 7.81 KB
/
Eureka Seven.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Anime Hero</title>
<!-- css files -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.10.2/css/all.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- start navbar -->
<nav class="navbar navbar-expand-lg navbar-light shadow py-2 py-sm-0">
<a class="navbar-brand" href="index.html">
<h5>Anime Hero</h5>
</a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<div class="container-fluid">
<div class="row py-3">
<div class="col-lg-6 col-sm-12 mb-3 mb-sm-0">
<ul class="navbar-nav mr-auto">
<!-- always use single word for li -->
<li class="nav-item active">
<a class="nav-link" href="index.html">Home<span
class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</nav>
<!-- end navbar-->
<!-- start reading intro -->
<div class="container my-5">
<div class="read-intro bg-light">
<div class="row">
<div class="cover col-*">
<img class="shadow" src="https://cdn.myanimelist.net/images/anime/13/56419.jpg" alt="Cover">
</div>
<div class="info col">
<h2 class="head">Eureka Seven</h2>
<table class="table table-borderless">
<tbody>
<tr>
<th scope="row">Genre:</th>
<td>Adventure, Drama, Romance, Sci-Fi</td>
</tr>
<tr>
<th scope="row">Status:</th>
<td>Completed</td>
</tr>
</tbody>
</table>
<p>
In the backwater town of Bellforest lives a 14-year-old boy named Renton Thurston. He desires to leave his home behind and join the mercenary group known as Gekkostate, hoping to find some adventure to brighten up his mundane life. However, stuck between his grandfather's insistence to become a mechanic like him and the pressure of his deceased father's legacy, the only excitement Renton finds is in his pastime of riding the Trapar wave particles that are dispersed throughout the air, an activity akin to surfing.
Everything changes when an unknown object crashes through Renton's garage, discovered to be a Light Finding Operation—a robot capable of riding the Trapar waves—specifically known as the Nirvash typeZERO. Its pilot is a young girl named Eureka, a member of the Gekkostate, who requests a tune-up for the Nirvash. Their meeting sparks the beginning of Renton's involvement with the Gekkostate as he takes off alongside Eureka as the co-pilot of the Nirvash.
</p>
</div>
</div>
</div>
</div>
<!-- end reading intro -->
<!-- start intro lists -->
<div class="container my-5 bg-white">
<div class="intro-lists">
<div class="head-list row bg-light">
<ul class="list-unstyled list-inline">
<!-- <li class="list-inline-item"><a data-toggle="tab" class="active" href="#ch">360</a></li> -->
<!-- <li class="list-inline-item"><a data-toggle="tab" href="#vol">480</a></li> -->
<!-- <li class="list-inline-item"><a data-toggle="tab" href="#related">720</a></li> -->
<!-- <li class="list-inline-item"><a data-toggle="tab" href="#gallery">1080</a></li> -->
</ul>
</div>
<div class="tab-content">
<!-- start 360 -->
<div id="ch" class="tab-pane fade">
<div class="row">
<table class="table table-striped">
<tbody>
<tr>
<th><a href="#" target="_blank">Compete Episode [360]</a></th>
<td class="text-muted text-uppercase float-right">Google Drive</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- end 360 -->
<!-- start 480 -->
<div id="vol" class="tab-pane fade">
<div class="row">
<table class="table table-striped">
<tbody>
<tr>
<th><a href="#" target="_blank">Compete Episode [480]</a></th>
<td class="text-muted text-uppercase float-right">Google Drive</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- end 480 -->
<!-- start 720 -->
<div id="related" class="tab-pane fade in active show">
<div class="row">
<table class="table table-striped">
<tbody>
<tr>
<th><a href="https://rekonise.com/eureka-seven-r5fl2">Compete Episode [720]</a></th>
<td class="text-muted text-uppercase float-right">Dropbox</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- end 720 -->
<!-- start 1080 -->
<div id="gallery" class="tab-pane fade">
<div class="row">
<table class="table table-striped">
<tbody>
<tr>
<th><a href="#" target="_blank">Compete Episode [1080]</a></th>
<td class="text-muted text-uppercase float-right">Google Drive</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- end 1080-->
</div>
</div>
</div>
<!-- end sh. list -->
</div>
</div>
<!-- end sh. list -->
<!-- start footer -->
<footer>
<div class="container py-4">
<span class="copyright">© Anime Hero <script>document.write(/\d{4}/.exec(Date())[0])</script></span>
<span class="design float-right">Redesigned Villain.In.Glasses</span>
</div>
</footer>
<!-- end footer -->
<!-- js files -->
<script src="js/jquery-3.4.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>