In: Computer Science
9. Create a Web page about your favorite musical group. Include the name of the group, the individuals in the group, a hyperlink to the group’s Web site, your favorite three (or fewer if the group is new) CD releases, and a brief review of each CD. ● Use an unordered list to organize the names of the individuals. ● Use a definition list for the names of the CDs and your reviews.
I would like it on Pink Floyd please I am sick and need help please
Code:
<html>
<head>
<title>Pink
Floyd</title>
<style type="text/css">
h1{
color: red;
}
h3{
color: blue;
}
dt{
color: green;
}
</style>
</head>
<body bgcolor="lightgray">
<center>
<h1><i>Pink Floyd</i></h1>
<a
href="https://thelateryears.pinkfloyd.com">Official
Website</a>
</center>
<h3>Members</h3>
<ul>
<li>Nick
Mason</li>
<li>Roger
Waters</li>
<li>Richard Wright</li>
<li>Syd
Barrett</li>
<li>David
Gilmour</li>
<li>Bob
Klose</li>
</ul>
<dl>
<dt><b>The Endless River</b></dt>
<dd>Pink
Floyd had released fifteen albums out of which The Endless River
was the final studio album.<br> This album has been released
in the month of November 2014.</dd>
<br><br>
<dt><b>The Division Bell</b></dt>
<dd>It was
the fourteenth out of fifteen albums released by the English Rock
Band Pink Floyd.</dd>
<br><br>
<dt><b>A Momentary Lapse Of
Reason</b></dt>
<dd>It was
the thirteenth out of fifteen albums released by Pink Floyd, the
English Rock Band.<br> It was released on 7th of September
1987.</dd>
</dl>
</body>
</html>
Code with explanation:
Output:
Note: Add the content in <dd> tag as per your need.