-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreviews.html
98 lines (85 loc) · 4.01 KB
/
reviews.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Movie/Show Reviews</title>
<link rel="stylesheet" href="CSS/styles.css">
</head>
<body>
<h1 id="reviewTitle">Movie/Show Reviews</h1>
<nav id="backButton">
<div class="link">
<a href="index.html">Return Home</a>
</div>
</nav>
<br>
<!-- Requirement-1.O-->
<table>
<tr>
<th>Movies</th>
<th>Review</th>
</tr>
<tr>
<td>
<!-- Requirement-1.L -->
<figure class="cover">
<img src="images/lalalandcover.jpg" alt="la la land cover" width="300">
<!-- Requirement-1.M -->
<figcaption>La La Land (2016)</figcaption>
</figure>
</td>
<td>
<p class="review">
I am typically not a fan of musicals or anything related to that genre
because I think that a lot of them are more or less the same. However, I
think this one is an exception. What makes this film memorable for many is
its music; this film features a plethora of songs that are unique in their
own ways. In terms of the romance in this story, the film does an excellent
job portraying the love and chemistry between Mia and Sebastian. Personally,
I think the crown jewel of this movie would be its ending as it is what makes
this film stand out from the other musicals. Endings to stories are difficult
to pull off; not everyone will be happy how it ends. Although the ending
itself is not one that is particularly happy, it is one that should satisfy
all viewers, no matter how they interpret it.
</p>
</td>
</tr>
</table>
<br>
<div class="shows">
<table>
<tr class="title">
<th class="title">Shows</th>
<th class="title">Review</th>
</tr>
<tr>
<td>
<figure class="cover">
<img src="images/breakingbadcover.jpg" alt="breaking bad cover" width="300">
<figcaption>Breaking Bad (2008-2013)</figcaption>
</figure>
</td>
<td>
<p class="review">
Breaking Bad is one of the greatest shows on television, and I do not
exaggerate when I say that. The show does an excellent job of portraying
Walter White's journey from a boring high school chemistry teacher to a
fearsome drug kingpin. The writing in this show conveys a plethora of
themes from power to the importance of family. I cannot even count the
amount of memorable lines and scenes in this show since there are so many.
The characters featured in this show are well-written as well, each having
their own unique place and identity in the show. One character that
particularly stands out to me the most is the eccentric lawyer Saul Goodman.
Overall, the show is an absolute must watch.
</p>
</td>
</tr>
</table>
</div>
<br>
<nav id="backButton">
<div class="link">
<a href="index.html">Return Home</a>
</div>
</nav>
</body>
</html>