-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
41 lines (34 loc) · 1.99 KB
/
Index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Tribute page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="index.css" />
<script src="main.js"></script>
<script src="https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js"></script>
</head>
<body>
<div id="main">
<h1 id="title">Freddie Mercury</h1>
<h2>The best voice of rock history</h2>
<div id="img-div">
<img id="image" src="https://cdn-3.expansion.mx/dims4/default/67a204d/2147483647/strip/true/crop/645x320+0+0/resize/800x397!/quality/90/?url=https%3A%2F%2Fcherry-brightspot.s3.amazonaws.com%2F82%2F79%2Feda1f6c946aa9c7613b03e715fef%2Fcaptura.JPG" alt="Freddie Mercury singing on studio"/>
<div id="img-caption">
<p>Freddie Mercury singing on studio</p>
</div>
</div>
<div id="tribute-info">
<p class="description">
Farrokh Bulsara (5 September 1946 – 24 November 1991), known professionally as Freddie Mercury, was a British singer, songwriter and record producer, best known as the lead vocalist of the rock band Queen. He was known for his flamboyant stage persona and four-octave vocal range. Mercury wrote numerous hits for Queen, including "Bohemian Rhapsody", "Killer Queen", "Somebody to Love", "Don't Stop Me Now", "Crazy Little Thing Called Love", and "We Are the Champions". He led a solo career while performing with Queen, and occasionally served as a producer and guest musician for other artists.</p>
<a id="tribute-link" target="_blank" href="https://en.wikipedia.org/wiki/Freddie_Mercury">For more information click here</a>
</div>
</div>
</body>
</html>
<!--
Hello Camper!
For now, the test suite only works in Chrome! Please read the README below in the JS Editor before beginning. Feel free to delete this message once you have read it. Good luck and Happy Coding!
- The freeCodeCamp Team
-->