Created
March 6, 2017 16:20
-
-
Save uyu423/feb1dff31c0bae5102c28e9c46582638 to your computer and use it in GitHub Desktop.
갑자기 필요해서 대충 만든 404 Not Found 페이지
This file contains 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 lang="ko"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Oops !!</title> | |
<!-- Fonts --> | |
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css"> | |
<!-- Styles --> | |
<style> | |
html, body { | |
background-color: #fff; | |
color: #636b6f; | |
font-family: 'Raleway', sans-serif; | |
font-weight: 100; | |
height: 100vh; | |
margin: 0; | |
} | |
.full-height { | |
height: 100vh; | |
} | |
.flex-center { | |
align-items: center; | |
display: flex; | |
justify-content: center; | |
} | |
.position-ref { | |
position: relative; | |
} | |
.content { | |
text-align: center; | |
} | |
.title { | |
font-size: 84px; | |
} | |
.subtitle { | |
font-size: 32px; | |
} | |
.links { | |
padding-top: 42px; | |
} | |
.links > a { | |
color: #636b6f; | |
padding: 0 25px; | |
font-size: 12px; | |
font-weight: 600; | |
letter-spacing: .1rem; | |
text-decoration: none; | |
text-transform: uppercase; | |
} | |
.m-b-md { | |
margin-bottom: 30px; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="flex-center position-ref full-height"> | |
<div class="content"> | |
<div class="title m-b-md"> | |
404 Not Found | |
</div> | |
<div class="subtitle m-b-md"> | |
Opps !! | |
</div> | |
<div class="links"> | |
<a href="https://plating.co.kr">Plating</a> | |
<a href="mailto:[email protected]">Bug Report</a> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment