forked from LordEaster/SE-FRONTEND-TEST-MOCK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
css_03_64160299.html
146 lines (123 loc) · 5.55 KB
/
css_03_64160299.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
<h1> CSS 3.1 : 12 points </h1>
<!-- Coding CSS 3.1 here!!!! -->
<style>
ul {
list-style: square;
line-height: 40px;
}
.image {
text-align: center;
}
img {
width: 150px;
height: 220px;
}
th {
height: 50px;
color: #7bd;
border: none;
vertical-align: bottom;
}
table {
color: black;
background-color: #ffffff;
}
#th1 {
width: 5%;
}
#th2 {
width: 10%;
}
#th3 {
width: 20%;
}
#th4 {
width: 45%;
}
#th5 {
width: 20%;
}
.radio {
width: 26px;
height: 26px;
}
.paragraph {
text-indent: 50px;
}
</style>
<table border="1" width="100%">
<tr>
<th id="th1"> ตัวเลือก</th>
<th id="th2"> ชื่อภาพยนตร์</th>
<th id="th3"> รายละเอียด </th>
<th id="th4"> เรื่องย่อ</th>
<th id="th5"> รูป</th>
</tr>
<tr>
<td>
<input class="radio" type="radio" name="radio_check">
</td>
<td>
Kono Subarashii Sekai ni Shukufuku wo!
</td>
<td>
<ul>
<li> Genres: Adventure, Comedy, Parody, Supernatural, Fantasy</li>
<li> Episodes: 10 </li>
<li> Aired: Jan 14, 2016 to Mar 17, 2016 </li>
<li> Studios: Studio Deen</li>
<li> Source: Light novel</li>
</ul>
</td>
<td>
<p class="paragraph">
After dying a laughable and pathetic death on his way back from buying a game, high school student and recluse Kazuma Satou finds himself sitting before a beautiful but obnoxious goddess named Aqua.
She provides the NEET with two options: continue on to heaven or reincarnate in every gamer's dream—a real fantasy world! Choosing to start a new life, Kazuma is quickly tasked with defeating a Demon King who is terrorizing villages.
But before he goes, he can choose one item of any kind to aid him in his quest, and the future hero selects Aqua. But Kazuma has made a grave mistake—Aqua is completely useless!
</p>
<p class="paragraph">
Unfortunately, their troubles don't end here; it turns out that living in such a world is far different from how it plays out in a game. Instead of going on a thrilling adventure, the duo must first work to pay for their living expenses. Indeed, their misfortunes have only just begun!
</p>
</td>
<td class="image">
<img src="https://assets-prd.ignimgs.com/2022/08/17/top25animecharacters-slideshow-1660779038818.jpg?crop=16%3A9&width=888">
</td>
</tr>
<tr>
<td>
<input class="radio" type="radio" name="radio_check">
</td>
<td>
Baka to Test to Shoukanjuu
</td>
<td>
<ul>
<li> Genres: Comedy, Romance, School, SuperPower</li>
<li> Episodes: 13 </li>
<li> Aired: Jan 7, 2010 to Apr 1, 2010</li>
<li>Studios: SILVER LINK.</li>
<li> Source: Light novel</li>
</ul>
</td>
<td>
<p class="paragraph">
Fumizuki Academy isn't a typical Japanese high school.
This unique institution has implemented a new and innovative system to sort its students. At the end of their freshman year, students take a test that divides up the student body.
The highest scorers are placed into A class, all the way down until F class, for the lowest of the low.
</p>
<p class="paragraph">
Unfortunately for Akihisa Yoshii, his supposedly "great" intellect wasn't quite enough for such a test, and he's now stuck at the bottom of F class.
Naturally, F class has the worst facilities: not only rotten tatami mats and broken tables, but also outdated equipment and worn out furniture. On the bright side, his friend Yuuji Sakamoto is in the same class, and to everyone's surprise,
the genius girl Mizuki Himeji has also ended up in the same class due to an unforeseen fever on the day of the test.
</p>
<p class="paragraph">
Unsatisfied with their perquisites, F class rallies behind Yuuji, determined to take on the higher-tiered classes in order to seize their perks by using the school's Examinations Summon Battle system.
The participants can summon fantasy characters—whose power levels are equal to their student's test scores—in an all-out battle. Will F class be able to rise to the top, or will they live up to everyone's expectations and fail?
</p>
</td>
<td class="image">
<img src="https://cdn.myanimelist.net/images/anime/3/50389.jpg">
</td>
</tr>
</table>
<!-- Coding CSS 3.1 here!!!! -->