diff --git a/Website/contact.css b/Website/contact.css new file mode 100644 index 000000000..9536033d4 --- /dev/null +++ b/Website/contact.css @@ -0,0 +1,93 @@ +/* General Styles */ +body { + font-family: Arial, sans-serif; + background-color: #160457; + color: #99d6dd; + margin: 0; + padding: 0; + display: flex; + justify-content: center; + align-items: center; + height: 100vh; +} + +/* Contact Form Container */ +.contact-container { + background-color: rgb(4, 9, 85); + padding: 40px; + border-radius: 10px; + box-shadow: 0 0 10px rgba(243, 246, 246, 0.1); + max-width: 500px; + width: 100%; + text-align: center; +} + +.contact-container h2 { + margin-bottom: 20px; + font-size: 24px; +} + +.contact-container p { + margin-bottom: 30px; + color: #0bc1f9; +} + +/* Form Styles */ +form { + display: flex; + flex-direction: column; +} + +label { + text-align: left; + margin-bottom: 5px; + color: #8fe8f4; +} + +input[type="text"], +input[type="email"], +textarea { + padding: 10px; + margin-bottom: 15px; + border-radius: 5px; + border: 1px solid #ccc; + font-size: 16px; + width: 100%; + box-sizing: border-box; +} + +textarea { + resize: vertical; +} + +button { + background-color: #416f77; + color: white; + padding: 12px; + border: none; + border-radius: 5px; + cursor: pointer; + font-size: 16px; + transition: background-color 0.3s ease; +} + +button:hover { + background-color: #05d1fa; +} + +/* Back to Home Button Styles */ +.back-button { + margin-top: 20px; + background-color: #5048eb; + color: white; + padding: 10px 20px; + border: none; + border-radius: 5px; + cursor: pointer; + font-size: 16px; + transition: background-color 0.3s ease; +} + +.back-button:hover { + background-color: #06fdfd; +} diff --git a/Website/contact.html b/Website/contact.html index 29af1b11b..09f76163d 100644 --- a/Website/contact.html +++ b/Website/contact.html @@ -3,10 +3,34 @@ - Contact | ML Repos - + Contact Us + -

This is the Contact page

+ +
+

Contact Us

+

We would love to hear from you! Please fill out this form and we'll get in touch with you shortly.

+ +
+ + + + + + + + + + + + + +
+ + + +
+ - \ No newline at end of file + diff --git a/Website/index.html b/Website/index.html index 439e1169f..002d99312 100644 --- a/Website/index.html +++ b/Website/index.html @@ -72,9 +72,7 @@