Created
January 7, 2018 13:08
-
-
Save ReenaVerma/c66bb05c7718bc548d4ad292e9f2eb13 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/zaperarilo
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>JS Bin</title> | |
<style id="jsbin-css"> | |
body { | |
background-color: #00ffa5; | |
} | |
h1 { | |
color:purple; | |
font-size: 56px; | |
font-family: arial; | |
background-color: orange; | |
text-align:center; | |
} | |
} | |
a { | |
color:purple; | |
} | |
a:hover{ | |
color:pink; | |
} | |
p { | |
font-size: 250px; | |
margin: 0 auto; | |
padding: 0px; | |
text-align:center; | |
color: #ef009b; | |
} | |
p:hover{ | |
color: red; | |
} | |
.heartcolor { | |
color: purple; | |
} | |
.heartcolor:hover { | |
color: white; | |
} | |
</style> | |
</head> | |
<body> | |
<h1><a href="http://www.reenaverma.co.uk">Jaya is amazing!</a></h1> | |
<p>♥</p> | |
<p class="heartcolor">❤</p> | |
<script id="jsbin-source-css" type="text/css">body { | |
background-color: #00ffa5; | |
} | |
h1 { | |
color:purple; | |
font-size: 56px; | |
font-family: arial; | |
background-color: orange; | |
text-align:center; | |
} | |
} | |
a { | |
color:purple; | |
} | |
a:hover{ | |
color:pink; | |
} | |
p { | |
font-size: 250px; | |
margin: 0 auto; | |
padding: 0px; | |
text-align:center; | |
color: #ef009b; | |
} | |
p:hover{ | |
color: red; | |
} | |
.heartcolor { | |
color: purple; | |
} | |
.heartcolor:hover { | |
color: white; | |
} | |
</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
body { | |
background-color: #00ffa5; | |
} | |
h1 { | |
color:purple; | |
font-size: 56px; | |
font-family: arial; | |
background-color: orange; | |
text-align:center; | |
} | |
} | |
a { | |
color:purple; | |
} | |
a:hover{ | |
color:pink; | |
} | |
p { | |
font-size: 250px; | |
margin: 0 auto; | |
padding: 0px; | |
text-align:center; | |
color: #ef009b; | |
} | |
p:hover{ | |
color: red; | |
} | |
.heartcolor { | |
color: purple; | |
} | |
.heartcolor:hover { | |
color: white; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment