-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
144 lines (139 loc) · 5.67 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/main.css" />
<title>Portfolio-About</title>
</head>
<body>
<div class="about-bgImg-container">
<!-- ABOUT NAV -->
<nav class="nav">
<ul class="nav__list">
<li class="nav__item">
<a href="index.html" class="nav__link">Home</a>
</li>
<li class="nav__item">
<a href="about.html" class="nav__link nav__link--active"
>About</a
>
</li>
<li class="nav__item">
<a href="projects.html" class="nav__link">PICTURES</a>
</li>
<li class="nav__item">
<a href="contact.html" class="nav__link">Contact</a>
</li>
</ul>
</nav>
<div class="about__bio-image">
<h2>BIO</h2>
<p>
Breaking Bad is an American crime drama television series created and
produced by Vince Gilligan. Set and filmed in Albuquerque, New Mexico,
the series follows Walter White (Bryan Cranston), an underpaid,
overqualified, and dispirited high-school chemistry teacher who is
struggling with a recent diagnosis of stage-three lung cancer. White
turns to a life of crime and partners with a former student, Jesse
Pinkman (Aaron Paul), to produce and distribute methamphetamine to
secure his family's financial future before he dies, while navigating
the dangers of the criminal underworld. The show aired on AMC from
January 20, 2008, to September 29, 2013, consisting of five seasons
for a total of 62 episodes.
</p>
</div>
</div>
<!-- ABOUT MAIN -->
<main class="about">
<div class="about__container">
<div class="about__job">
<h2 class="text-secondary">2008</h2>
<h3>SEASON 1</h3>
<h6>Vince Gilligan</h6>
<p>
On his 50th birthday, during his surprise party, Walt watches a news
report about Hank arresting methamphetamine dealers. Walt is
impressed by the monetary returns from the meth operation, and Hank
offers to take him as a ride-along to a DEA bust. The next day, Walt
faints at the car wash and is taken to a hospital; there, he is told
he has inoperable lung cancer and will likely die within the next
two years.
</p>
</div>
<div class="about__job">
<h2 class="text-secondary">2009</h2>
<h3>SEASON 2</h3>
<h6>Bryan Cranston</h6>
<p>
Walt's "blue meth" becomes incredibly popular, to the point that
Hank takes notice and raids Tuco's operation. A paranoid Tuco evades
the bust, carjacks Jesse, and kidnaps Walt. He brings them to an
isolated house in the desert, planning to take them deep into Mexico
where they would be forced to cook their blue meth for the cartel.
</p>
</div>
<div class="about__job">
<h2 class="text-secondary">2010</h2>
<h3>SEASON 3</h3>
<h6>Michelle MacLaren</h6>
<p>
Walt decides to get out of the meth business, refusing Gus' offer to
produce meth in a state-of-the-art laboratory hidden under an
industrial laundry for a million dollars a month. Now separated from
Skyler and living in an apartment, Walt admits to her that he has
been financing his treatment by cooking meth. Horrified, Skyler asks
for a divorce in return for her silence and demands that Walt have
nothing to do with their children.
</p>
</div>
<div class="about__job">
<h2 class="text-secondary">2011</h2>
<h3>SEASON 4</h3>
<h6>Vince Gilligan</h6>
<p>
In the aftermath of Gale's murder, Mike holds Walt at the lab to
await Gus' arrival. Victor arrives with Jesse and proceeds to start
the cooking process himself to show Gus that Walt and Jesse are not
indispensable. Gus, however, kills Victor in front of Mike, Walt,
and Jesse in a gruesome show of force.
</p>
</div>
<div class="about__job">
<h2 class="text-secondary">2012 - 2013</h2>
<h3>SEASON 5</h3>
<h6>Rian Johnson</h6>
<p>
Mike intends to kill Walt in retaliation for Gus' death, but Jesse
intervenes and convinces the two men to work together to eliminate
their connection to the destroyed lab. The three eventually start a
new meth production system with the help of a corrupt pest control
company, using residents' homes to cook meth while they are
fumigated, using methylamine provided by Lydia Rodarte-Quayle (Laura
Fraser), a representative for the conglomerate that owned Gus's
chicken franchise.
</p>
</div>
</div>
</main>
<!-- ABOUT FOOTER -->
<footer class="vertical">
<div class="social-icons">
<a href="#">
<i class="fab fa-twitter fa-2x"></i>
</a>
<a href="#">
<i class="fab fa-facebook fa-2x"></i>
</a>
<a href="#">
<i class="fab fa-instagram fa-2x"></i>
</a>
<a href="#">
<i class="fab fa-github fa-2x"></i>
</a>
</div>
<div class="copyright">© Copyright 2023</div>
</footer>
</body>
</html>