Skip to content

Instantly share code, notes, and snippets.

@arvindravi
Created January 17, 2012 13:47
Show Gist options
  • Save arvindravi/1626678 to your computer and use it in GitHub Desktop.
Save arvindravi/1626678 to your computer and use it in GitHub Desktop.
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Calculator | Just Another Classroom</title>
<link rel="stylesheet" type="text/css" href="CSS/bootstrap.css" media="all">
</head>
<body class="container">
<div class="row">
<div class="span5">
&nbsp;
</div>
<div class="span5">
<table>
<form action="/calculate" method="post">
<tr>
<td>Semester :</td>
<td>
<select name="semester" id="semester">
<option value="1">I</option>
<option value="2">II</option>
<option value="3">III</option>
<option value="4">IV</option>
<option value="5">V</option>
<option value="6">VI</option>
<option value="7">VII</option>
<option value="8">VIII</option>
</select>
</td>
<td>
<input type="submit" class="btn primary" value="Submit">
</td>
</tr>
</form>
</table>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment