Skip to content

Instantly share code, notes, and snippets.

@ssaurel
Created December 12, 2017 10:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ssaurel/2a758ac1adf7a7537f65fec8f575069a to your computer and use it in GitHub Desktop.
Save ssaurel/2a758ac1adf7a7537f65fec8f575069a to your computer and use it in GitHub Desktop.
Bitcoin Price Index Watcher Tutorial in HTML5 Step 1
<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