Created
October 22, 2013 20:03
-
-
Save cdl/7107170 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> | |
<title>Sphere Volume Calculator</title> | |
</head> | |
<body> | |
<section class="calculator"> | |
<h1>Sphere Volume Calculator</h1> | |
<form action="#" class="calculator-form" id="calculator"> | |
<input type="text" name="number" placeholder="Radius" /> | |
<button class="btn" id="clearBtn">Clear</button> | |
<input type="submit" id="submitBtn" value="Submit" /> | |
</form> | |
</section> | |
<section class="out"></section> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment