Skip to content

Instantly share code, notes, and snippets.

@egoing
Created June 21, 2017 13:35
Show Gist options
  • Save egoing/f56b97460d28d8f54adefbafa804e583 to your computer and use it in GitHub Desktop.
Save egoing/f56b97460d28d8f54adefbafa804e583 to your computer and use it in GitHub Desktop.
랜덤이미지
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
body{
background-image: url("https://source.unsplash.com/collection/958757/1600x900");
background-repeat: no-repeat;
background-size: cover;
height:100vh;
width:100vw;
margin:0;
display: flex;
align-items: center;
justify-content: center;
}
h1{
margin:0;
font-family: 'Source Sans Pro', sans-serif;
text-align: center;
background-color:rgba(255,255,255,0.3);
padding:10px;
font-weight: 100;
}
</style>
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400" rel="stylesheet">
</head>
<body>
<h1>
coding everybody<br>
yah.ac
</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment