Files
ut-grade-distribution-viewer/index.html
2023-04-17 19:29:56 -05:00

28 lines
973 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>UT Grade Viewer</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
</head>
<body>
<div class="bg"></div>
<div class="bg-text">
<label for="className">Class Name (Like "ARH 301 INTRODUCTION TO VISUAL ARTS"):</label>
<input type="text" id="className" name="fname"><br><br>
<form>
<label for="dropdown">Semester (work in progress):</label>
<select id="dropdown" name="dropdown">
<option value="option1">Fall 2022</option>
<option value="option2">Spring 2022</option>
<option value="option3">Fall 2021</option>
</select>
<br><br>
</form>
<button type="submit" id = "subBut">Submit</button>
</div>
<script src='main.js'></script>
</body>
</html>