Created
March 9, 2019 14:18
-
-
Save TammyLaforest/fdcff4e347874eead1222cd6bcf5dbc0 to your computer and use it in GitHub Desktop.
QueenSite created by TammyLaforest - https://repl.it/@TammyLaforest/QueenSite
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>repl.it</title> | |
<link href="style.css" rel="stylesheet" type="text/css" /> | |
</head> | |
<body> | |
<!-- Chrysalis Lesson March 9, 2019 --> | |
<!-- https://docs.google.com/document/d/1QPozJ-lMNvQApO7twpvy0LBavfviTKfohAzh_XPoCP8/edit?usp=sharing --> | |
<!-- Learn how to format HTML and style with CSS --> | |
<div class="image"> | |
<img class="logo" width = "200px" height="auto" src="https://static1.squarespace.com/static/583863c1e6f2e1216884123c/t/5b473a1a1ae6cf83c89025bd/1531394592268/kisspng-queen-logo-musician-hot-space-heart-attack-5ac9fda8338994.3744281815231871122111.png" /> | |
</div> | |
<h1>We Will Rock You</h1> | |
<div class="info"> | |
<ul> | |
<li>Artist: Queen</li> | |
<li>Album: News of the World</li> | |
<li>Released: 1977</li> | |
<li>Awards: Grammy Hall of Fame</li> | |
</ul> | |
</div> | |
<div class="video"> | |
<iframe width="auto" height="auto" src="https://www.youtube.com/embed/-tJYN-eG1zk" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe> | |
</div> | |
<div class="lyrics"> | |
<p> | |
Buddy, you're a boy, make a big noise<br> | |
Playing in the street, gonna be a big man someday<br> | |
You got mud on your face, you big disgrace<br> | |
Kicking your can all over the place, singin'<br> | |
</p> | |
<p> | |
We will, we will rock you<br> | |
We will, we will rock you<br> | |
</p> | |
<p> | |
Buddy, you're a young man, hard man<br> | |
Shouting in the street, gonna take on the world someday<br> | |
You got blood on your face, you big disgrace<br> | |
Waving your banner all over the place<br> | |
</p> | |
<p> | |
We will, we will rock you, sing it!<br> | |
We will, we will rock you, yeah<br> | |
Buddy, you're an old man, poor man<br> | |
Pleading with your eyes, gonna get you some peace someday<br> | |
You got mud on your face, big disgrace<br> | |
Somebody better put you back into your place, do it!<br> | |
</p> | |
<p> | |
We will, we will rock you, yeah, yeah, come on<br> | |
We will, we will rock you, alright, louder!<br> | |
We will, we will rock you, one more time<br> | |
We will, we will rock you<br> | |
Yeah<br> | |
</p> | |
</div> | |
<footer> | |
<div class="footer"> | |
<p>Songwriters: Brian Harold May</p> | |
<p>We Will Rock You lyrics © Sony/ATV Music Publishing LLC</p> | |
</div> | |
</footer> | |
<script src="script.js"></script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body | |
{ | |
margin: 3em; | |
} | |
h1 | |
{ | |
text-align: center; | |
color: gold; | |
} | |
.info | |
{ | |
color: blue; | |
font-size: 12pt; | |
margin-bottom: 1em; | |
} | |
.video{ | |
text-align: center; | |
border: 10px solid pink; | |
display: block; | |
padding: 1em; | |
} | |
.lyrics | |
{ | |
color: red; | |
font-size: 14pt; | |
margin: 5px; | |
} | |
.footer | |
{ | |
color: darkorange; | |
font-size: 8pt; | |
padding: 10px; | |
} | |
.image | |
{ | |
text-align: center; | |
margin: 1em; | |
opacity: 50%; | |
} | |
.logo | |
{ | |
background-color: #fff333; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment