Update index.html

This commit is contained in:
William Mantly 2015-07-28 18:14:26 -04:00
parent cabe629a3a
commit 4e6ac2085a

View File

@ -1,22 +1,22 @@
<!doctype HTML>
<html>
<head>
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="main.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript" src="main.js"></script>
</head>
<body>
<div class = "container">
<head>
<link rel="stylesheet" type="text/css" href="reset.css">
<link rel="stylesheet" type="text/css" href="main.css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="main.js"></script>
</head>
<body>
<div class="container">
<nav id="top">
<h1>Get All Prime Numbers below Input Number</h1>
</nav>
<form id="numberform" action="#" method="post">
<input type="text" id= "number" name="comment" placeholder="Enter a Number">
<input type="submit" value="Get Primes">
</form>
<div id = "printout"></div>
<input type="text" id="number" name="comment" placeholder="Enter a Number" />
<input type="submit" value="Get Primes" />
</form>
<div id="printout"></div>
</div>
</body>
</html>
</body>
</html>