28 lines
953 B
HTML
28 lines
953 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'>
|
|
<script src='main.js'></script>
|
|
</head>
|
|
<body>
|
|
<div class="bg"></div>
|
|
<div class="bg-text">
|
|
<label for="fname">Class Name (Like "ARH 301 INTRODUCTION TO VISUAL ARTS"):</label>
|
|
<input type="text" id="fname" 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>
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html> |