Created
December 12, 2017 10:32
-
-
Save ssaurel/2a758ac1adf7a7537f65fec8f575069a to your computer and use it in GitHub Desktop.
Bitcoin Price Index Watcher Tutorial in HTML5 Step 1
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
<html> | |
<head> | |
<title>Bitcoin Price Index Watcher in HTML5</title> | |
<style type="text/css"> | |
#data { | |
width: 400px; | |
border: 1px dashed black; | |
font-size: 20px; | |
text-align: center; | |
margin: 0 auto; | |
margin-top: 50px; | |
padding: 10px; | |
} | |
#logo { | |
width: 320px; | |
height: 320px; | |
margin: 0 auto; | |
margin-top: 50px; | |
display: block; | |
} | |
</style> | |
</head> | |
<body> | |
<img id="logo" src="https://www.ssaurel.com/cryptocoins/screenshots/web_hi_res_512.png" /> | |
<div id="data" /> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment