-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog6.html
More file actions
323 lines (249 loc) · 14.2 KB
/
blog6.html
File metadata and controls
323 lines (249 loc) · 14.2 KB
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
<!DOCTYPE html>
<html lang="en">
<!-- head -->
<head>
<!-- CSS link -->
<link rel="stylesheet" href="../Convert-Mockup-Lab/styles/blog6.css">
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- Font Awesome Icon Styles -->
<link href="../Convert-Mockup-Lab/fontawesome/css/all.css" rel="stylesheet"> <!--load all styles -->
<title>mackMedi@ Blog</title>
</head>
<!-- Body -->
<body style="background-color: lightslategray;">
<!-- Navbar -->
<div>
<nav class="navbar navbar-expand-lg navbar-dark p-4" style="background-color: rgb(128, 63, 63); margin-bottom: 20px; color: rgb(255, 255, 255);">
<a style="color: rgb(221, 220, 220); font-size: 1.3rem;" class="navbar-brand" href="#">mackMedi@</a> <i> -"Making media grow"</i>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav navbar-nav ml-auto mx-5 pr-5">
<li class="nav-item active">
<a class="nav-link" href="#">HOME <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">SERVICE</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">PORFOLIO</a>
</li>
<!-- Drop down link-->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Music Blog
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</li> <!-- Drop down link Ends-->
<li class="nav-item">
<a class="nav-link" href="#">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">CONTACT</a>
</li>
</li>
</ul>
</div>
</nav>
</div> <!-- Navbar Ends-->
<!-- Container -->
<div class="container" pt-4;>
<!-- Row containing 3 columns with 3 cards -->
<div class="row text-center" >
<!-- Rza Gza ODB -->
<div class="col">
<img class="mb-4 img-fluid rounded" src="../Convert-Mockup-Lab/images/Wutang Images/Rza.jpg">
<h2 class="mb-4">Rza</h2>
<p>The de facto leader of the group. He produced the entirety of Enter the Wu-Tang (36 Chambers) and the majority of the tracks on subsequent Wu-Tang albums.He has scored several Hollywood films, such as American Gangster</p>
</div> <!-- Column Ends -->
<div class="col">
<img class="mb-4 img-fluid rounded" src="../Convert-Mockup-Lab/images/Wutang Images/gza_18_1024-1024x574.jpg">
<h2 class="mb-4">Gza</h2>
<p>The oldest member of the group as well as the most experienced.He is known for his use of metaphor, containing references to Samurai films, chess and 5 Percenter teachings.</p>
</div> <!-- Column Ends -->
<div class="col">
<img class="mb-4 img-fluid rounded" src="../Convert-Mockup-Lab/images/Wutang Images/Ol-Dirty-Bastard-1997-portrait-billboard-1548-768x433.jpg">
<h2 class="mb-4">Ol Dirty Bastard</h2>
<p>Arguably the most eccentric and erratic member of the group, his wild behavior drew significant media attention. He was known for his off-beat rhymes, charismatic ululations, slightly garbled style, and unpredictable vocal inflections.</p>
</div> <!-- Column Ends -->
</div> <!-- Row Ends -->
<!-- Row containing 3 columns with 3 cards -->
<div class="row text-center">
<!-- Method man, Raekwon, Ghostface -->
<div class="col">
<img class="mb-4 img-fluid rounded" src="../Convert-Mockup-Lab/images/Wutang Images/Method Man.jpg">
<h2 class="mb-4">Method Man</h2>
<p>The youngest member of the Wu-Tang Clan and the first to release a Wu-Tang solo album with Tical. His career is highlighted by platinum sales and a Grammy for I'll Be There for You/You're All I Need to Get By with Mary J. Blige.</p>
</div> <!-- Column Ends -->
<div class="col">
<img class="mb-4 img-fluid rounded" src="../Convert-Mockup-Lab/images/Wutang Images/raekwon-lead.jpg">
<h2 class="mb-4">Raekwon</h2>
<p>Nicknamed "The Chef" for having "lyrical flavor". His lyrics contain extensive use of New York slang, which is often delivered in an aggressive, fast-paced manner. He is also known for his storytelling about wealth, power, and prestige.</p>
</div> <!-- Column Ends -->
<div class="col">
<img class="mb-4 img-fluid rounded" src="../Convert-Mockup-Lab/images/Wutang Images/09.07-Ghostface-Killah.jpg">
<h2 class="mb-4">Ghostface</h2>
<p>Known for his distinctive, abstract, energetic and emotional style of rapping. He had a large role in Raekwon's Only Built 4 Cuban Linx... and later released his debut album Ironman to critical acclaim. Mainstream hip-hop press credits his second album Supreme Clientele with "saving the Wu.</p>
</div> <!-- Column Ends -->
</div> <!-- Row Ends -->
<!-- Row containing 3 columns with 3 cards -->
<div class="row text-center" >
<!-- Inspectah Deck, Ugod, Masta Killer -->
<div class="col">
<img class="mb-4 img-fluid rounded" src="../Convert-Mockup-Lab/images/Wutang Images/inspectah-deck-yellow.jpg">
<h2 class="mb-4">Inspectah Deck</h2>
<p>Inspectah Deck is known for his use of metaphors and complicated rhyme-schemes. He was a popular guest rapper in 1997 and 1998. He is also a producer, providing beats for artists both in and out of the Wu-Tang Clan, such as Ghostface Killah, Method Man, Big Pun, Prodigy, and others.</p>
</div> <!-- Column Ends -->
<div class="col">
<img class="mb-4 img-fluid rounded" src="../Convert-Mockup-Lab/images/Wutang Images/ugod.jpg">
<h2 class="mb-4">U-God</h2>
<p>A founding member with his own solo career, U-God's has had a relatively low profile, in part due to his limited exposure from being incarcerated for most of the recording of Enter the Wu-Tang (36 Chambers), in which he only delivered short verses on "Da Mystery of Chessboxin'" and "Protect Ya Neck".</p>
</div> <!-- Column Ends -->
<div class="col">
<img class="mb-4 img-fluid rounded" src="../Convert-Mockup-Lab/images/Wutang Images/masta killer.jpg">
<h2 class="mb-4">Masta Killa</h2>
<p>The only member not already an experienced rapper at the time of the group's formation, he was extensively mentored by GZA during his early days with the group. He was largely absent on the group's first album due to his being incarcerated, though he did contribute the final verse to the track "Da Mystery of Chessboxin".</p>
</div> <!-- Column Ends -->
</div> <!-- Row Ends -->
<!-- Row containing 3 columns with 3 cards -->
<div class="row d-flex justify-content-center text-center" >
<!-- Cappadonna -->
<div class="col-4">
<img class="mb-4 img-fluid rounded" src="../Convert-Mockup-Lab/images/Wutang Images/Cappadonna.jpg">
<h2 class="mb-4">Cappadonna</h2>
<p>After growing up as friends with many of the Clan members, Cappadonna made his debut as an affiliate of the Wu-Tang Clan on Raekwon's hit single "Ice Cream". He was also a guest star, along with Raekwon, on Ghostface Killah's solo debut album, Ironman. He made his first appearance on a Wu-Tang Clan album in 1997 on Wu-Tang Forever on the single "Triumph".</p>
</div> <!-- Column Ends -->
</div> <!-- Row Ends -->
<button class="mb-5" style="background-color: rgb(54, 108, 126);">Older Posts</button>
</div> <!-- CONTAINER ENDS-->
<!-- Footer -->
<!-- Footer -->
<footer class="page-footer font-small mdb-color pt-4" style="background-color: rgb(128, 63, 63);">
<!-- Footer Links -->
<div class="container text-center text-md-left">
<!-- Footer links -->
<div class="row text-center text-md-left mt-3 pb-3">
<!-- Grid column -->
<div class="col-md-3 col-lg-3 col-xl-3 mx-auto mt-3">
<h3 class="mb-4 font-weight-bold" style="color: lightslategray;">mackMedi@</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Rem expedita saepe labore a laborum quisquam aliquam. Quia doloribus, delectus magnam cum maiores fugit dolore minus nostrum quibusdam natus nemo asperiores?
</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none">
<!-- Grid column -->
<div class="col-md-2 col-lg-2 col-xl-2 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold" style="color: rgb(255, 255, 255);">Products</h6>
<p>
<a href="#!" style="color: rgb(0, 0, 0);">MDBootstrap</a>
</p>
<p>
<a href="#!" style="color: rgb(0, 0, 0);">MDWordPress</a>
</p>
<p>
<a href="#!" style="color: rgb(0, 0, 0);">BrandFlow</a>
</p>
<p>
<a href="#!" style="color: rgb(0, 0, 0);">Bootstrap Angular</a>
</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none">
<!-- Grid column -->
<div class="col-md-3 col-lg-2 col-xl-2 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold" style="color: rgb(255, 255, 255);">Useful links</h6>
<p>
<a href="#!" style="color: rgb(0, 0, 0);">Your Account</a>
</p>
<p>
<a href="#!" style="color: rgb(0, 0, 0);">Become an Affiliate</a>
</p>
<p>
<a href="#!" style="color: rgb(0, 0, 0);">Shipping Rates</a>
</p>
<p>
<a href="#!" style="color: rgb(0, 0, 0);">Help</a>
</p>
</div>
<!-- Grid column -->
<hr class="w-100 clearfix d-md-none">
<!-- Grid column -->
<div class="col-md-4 col-lg-3 col-xl-3 mx-auto mt-3">
<h6 class="text-uppercase mb-4 font-weight-bold" style="color: rgb(255, 255, 255);">Contact</h6>
<p>
<i class="fas fa-home mr-3"></i> New York, NY 10012, US</p>
<p>
<i class="fas fa-envelope mr-3"></i> info@gmail.com</p>
<p>
<i class="fas fa-phone mr-3"></i> + 01 234 567 88</p>
<p>
<i class="fas fa-print mr-3"></i> + 01 234 567 89</p>
</div>
<!-- Grid column -->
</div>
<!-- Footer links -->
<hr>
<!-- Grid row -->
<div class="row d-flex align-items-center">
<!-- Grid column -->
<div class="col-md-7 col-lg-8">
<!--Copyright-->
<p class="text-center text-md-left">© 2020 Copyright:
<a href="#mackMedi@">
<strong> mackMedi@</strong>
</a>
</p>
</div>
<!-- Grid column -->
<!-- Grid column -->
<div class="col-md-5 col-lg-4 ml-lg-0">
<!-- Social buttons -->
<div class="text-center" style="font-size: 1.5rem;">
<ul>
<li class="list-inline-item">
<!--brand icon-->
<div><i class="fab fa-facebook-f fa-fw blue-text"></i></div>
</li>
<li class="list-inline-item">
<!--brand icon-->
<div><i class="fab fa-twitter fa-fw blue-text"></i></div>
</li>
<li class="list-inline-item">
<!--brand icon-->
<div><i class="fab fa-dribbble"></i></div>
</li>
<li class="list-inline-item">
<!--brand icon-->
<div><i class="fab fa-linkedin fa-fw blue-text"></i></div>
</li>
<li class="list-inline-item">
<!--brand icon-->
<div><i class="fab fa-pinterest fa-fw red-text"></i></div>
</li>
<li class="list-inline-item">
<!--brand icon-->
<div><i class="fab fa-instagram fa-fw pink-text"></i></div>
</li>
</ul>
</div>
<!-- Grid column -->
</div>
<!-- Grid row -->
</div>
<!-- Footer Links -->
</footer>
<!-- Footer -->
<!-- Footer -->
</div>
</body>
</html>