Skip to content

Instantly share code, notes, and snippets.

@ReenaVerma
Created January 7, 2018 13:07
Show Gist options
  • Save ReenaVerma/27406bdd1b4fe6fca32f7aba30ea8da6 to your computer and use it in GitHub Desktop.
Save ReenaVerma/27406bdd1b4fe6fca32f7aba30ea8da6 to your computer and use it in GitHub Desktop.
JS Bin // source https://jsbin.com/zaperarilo
<!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="www.reenaverma.co.uk">Jaya is amazing!</a></h1>
<p>&hearts;</p>
<p class="heartcolor">&#x2764;</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>
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;
}
@ReenaVerma
Copy link
Author

my niece's web page

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment