Created
September 10, 2015 16:39
-
-
Save ZakharDay/dcf65fc199a5eddb82ec to your computer and use it in GitHub Desktop.
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="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>UNIQ 101 000 Showcase</title> | |
<style> | |
html { | |
height: 100%; | |
} | |
body { | |
background-color: darkblue; | |
display: flex; | |
height: 100%; | |
} | |
div { | |
font-family: Helvetica, Arial, sans-serif; | |
font-size: 30px; | |
width: 560px; | |
background-color: white; | |
border-width: 10px; | |
border-color: blue; | |
border-style: solid; | |
padding: 50px; | |
line-height: 1.8; | |
margin: auto; | |
} | |
</style> | |
</head> | |
<body> | |
<div>Я элемент div, созданный благодаря тегу div. Div обозначает division — разделение. Я делю контент на части.</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment