commit 5cdb3cce4f3460f50cb340d532c3ae9f70e98071 Author: HW Computer Date: Mon Apr 17 12:42:42 2023 -0500 first commit diff --git a/index.html b/index.html new file mode 100644 index 0000000..87e37f7 --- /dev/null +++ b/index.html @@ -0,0 +1,18 @@ + + + + + + UT Grade Viewer + + + + + + +

+ +

+ + + \ No newline at end of file diff --git a/main.css b/main.css new file mode 100644 index 0000000..d461ced --- /dev/null +++ b/main.css @@ -0,0 +1,88 @@ +/* +* Disclaimer: Made in 3 minutes while I was bored at lecture +*/ +/* General Styles */ +body { + font-family: 'Helvetica Neue', sans-serif; + background-color: #f7f7f7; + color: #333333; + } + + a { + color: #2c82c9; + text-decoration: none; + } + + /* Header Styles */ + header { + background-color: #2c82c9; + color: #ffffff; + padding: 20px; + } + + header h1 { + font-size: 48px; + margin: 0; + } + + header h2 { + font-size: 24px; + margin: 0; + } + + /* Navigation Styles */ + nav { + background-color: #ffffff; + padding: 20px; + } + + nav ul { + list-style: none; + margin: 0; + padding: 0; + } + + nav li { + display: inline-block; + margin-right: 20px; + } + + nav a { + color: #333333; + font-size: 18px; + text-decoration: none; + } + + nav a:hover { + color: #2c82c9; + } + + /* Main Content Styles */ + main { + padding: 20px; + } + + main h1 { + font-size: 36px; + margin: 0 0 20px 0; + } + + main p { + font-size: 18px; + line-height: 1.5; + margin: 0 0 20px 0; + } + + /* Footer Styles */ + footer { + background-color: #333333; + color: #ffffff; + padding: 20px; + text-align: center; + } + + footer p { + font-size: 18px; + margin: 0; + } + \ No newline at end of file diff --git a/main.js b/main.js new file mode 100644 index 0000000..e69de29