Skip to content

Instantly share code, notes, and snippets.

@wdiasvargas
Created April 18, 2016 12:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wdiasvargas/a35cc5626e131b831ac6b43a1e752b74 to your computer and use it in GitHub Desktop.
Save wdiasvargas/a35cc5626e131b831ac6b43a1e752b74 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link href='https://fonts.googleapis.com/css?family=Lobster+Two:700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Cookie:400' rel='stylesheet' type='text/css'></head>
<body>
<style>
body{
background-color: #1abc9c;
}
.texto{
font-family: 'Lobster Two', cursive;
font-size: 78px;
font-style: italic;
text-align: center;
color: #fbfcfc;
position: relative;
padding-top: 15%;
}
.texto2{
font-family: font-family: 'Cookie', cursive;
font-size: 20px;
color: #ecf0f1;
text-align: center;
font-weight: bold;
}
</style>
<main>
<p class="texto">
Hello World
</p>
<p class="texto2">
this is a example
</p>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment