first commit

This commit is contained in:
2023-04-17 12:42:42 -05:00
commit 5cdb3cce4f
3 changed files with 106 additions and 0 deletions

18
index.html Normal file
View File

@@ -0,0 +1,18 @@
<!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>
<label for="fname">Class Name (Like "ARH 301 INTRODUCTION TO VISUAL ARTS"):</label>
<input type="text" id="fname" name="fname"><br><br>
<label for="lname">School Year (Work in progress):</label>
<input type="text" id="lname" name="lname"><br><br>
<input type="submit" value="Submit">
</body>
</html>