Created
September 20, 2020 23:48
-
-
Save emersonbroga/3a5356be9033d80f662065c374d8d792 to your computer and use it in GitHub Desktop.
JSBin Test
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"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>JSBin Test</title> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>Js Bin Test</h1> | |
<p>This is a test to import a gist into JSBin.<p> | |
</div> | |
</body> | |
</html> |
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
console.log('JsBin test'); |
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
.container { | |
max-width: 800px; | |
margin: 0 auto; | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
} | |
.container h1 { | |
text-decoration: underline; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment