Created
February 22, 2018 16:32
-
-
Save deadlysyn/05b4b94ae79308cff186518907252566 to your computer and use it in GitHub Desktop.
This file contains hidden or 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> | |
<link rel="stylesheet" href="style.css"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> | |
<script src="https://unpkg.com/axios/dist/axios.min.js"></script> | |
</head> | |
<body> | |
<h1>Bitcoin Price Checker</h1> | |
<ul> | |
<li id="btnXHR">XHR</li> | |
<li id="btnFetch">Fetch</li> | |
<li id="btnJquery">jQuery</li> | |
<li id="btnAxios">Axios</li> | |
</ul> | |
<p id="price">Push a button to get started...</p> | |
<script src="bitcoinGetter.js"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment