Created
November 3, 2019 22:15
-
-
Save nlucero/708afa1e2ff180bf2cce3009f2489d37 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> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Page Title</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<style> | |
.container { | |
margin: 10rem; | |
height: 30rem; | |
border: 1px solid gray; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
box-shadow: 1px 1px 64px 0px; | |
} | |
.item { | |
width: 60%; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
} | |
.item img { | |
max-width: 100%; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="item"><img src="image.png" /></div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment