forked from Nana-king-netizen/Dummy_LMS_Frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
337 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link rel="stylesheet" href="style.css"> | ||
<title>UG || Computer Science</title> | ||
<style> | ||
.container { | ||
width: 80%; | ||
margin: auto; | ||
overflow: hidden; | ||
} | ||
#contact-form { | ||
background: #f9f9f9; | ||
padding: 20px; | ||
margin-top: 20px; | ||
border-radius: 5px; | ||
} | ||
#contact-form label { | ||
display: block; | ||
font-weight: bold; | ||
margin-top: 10px; | ||
} | ||
#contact-form input[type="text"], | ||
#contact-form textarea { | ||
width: 100%; | ||
padding: 8px; | ||
margin-top: 6px; | ||
border: 1px solid #ccc; | ||
border-radius: 5px; | ||
} | ||
#contact-form input[type="submit"] { | ||
width: 100%; | ||
padding: 10px; | ||
margin-top: 10px; | ||
background: #040468; | ||
color: #fff; | ||
border: none; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
} | ||
#contact-form input[type="submit"]:hover { | ||
background: #005da9; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header class="header"> | ||
<div class="dept-logo"> | ||
<img src="img/CS_logo.png" class="logo" alt="Computer Science Department"> | ||
</div> | ||
<nav class="navbar"> | ||
<ul> | ||
<li><a href="index.html">Home</a></li> | ||
<li><a href="about.html">About</a></li> | ||
<li><a href="#">Faculty</a></li> | ||
<li><a href="contact.html">Contact Us</a></li> | ||
</ul> | ||
</nav> | ||
|
||
|
||
</header> | ||
|
||
<section class="intro-hm intro-about"> | ||
<div class="intro-txt"> | ||
<h1>Reach Out To Us</h1> | ||
</div> | ||
</section> | ||
|
||
<div class="container"> | ||
<h2>Contact Us</h2> | ||
<form id="contact-form" action="#" method="post"> | ||
<label for="name">Name</label> | ||
<input type="text" id="name" name="name" placeholder="Your Name" required> | ||
|
||
<label for="email">Email</label> | ||
<input type="text" id="email" name="email" placeholder="Your Email" required> | ||
|
||
<label for="message">Message</label> | ||
<textarea id="message" name="message" placeholder="Your Message" required></textarea> | ||
|
||
<input type="submit" value="Submit"> | ||
</form> | ||
</div> | ||
<footer class="site-footer"> | ||
|
||
|
||
<div class="footer-links"> | ||
<div class="footer-section"> | ||
<h3>Academics</h3> | ||
<ul> | ||
<li><a href="#">Undergraduate Courses</a></li> | ||
<li><a href="#">Graduate Courses (MPhil Computer Science)</a></li> | ||
<li><a href="#">Graduate Courses (MSc Computer Science)</a></li> | ||
<li><a href="#">Graduate Courses (PhD)</a></li> | ||
</ul> | ||
</div> | ||
|
||
<div class="footer-section"> | ||
<h3>Admissions</h3> | ||
<ul> | ||
<li><a href="#">Undergraduate</a></li> | ||
<li><a href="#">Graduate</a></li> | ||
<li><a href="#">International Students</a></li> | ||
<li><a href="#">Entry Requirements</a></li> | ||
</ul> | ||
</div> | ||
|
||
<div class="footer-section"> | ||
<h3>Contact Us</h3> | ||
<h4>Phone & Email</h4> | ||
<p>+00000000000</p> | ||
<p>+00000000000</p> | ||
<p>[email protected]</p> | ||
<div class="social-media"> | ||
<!-- <div class="social-icons"> | ||
<a href="#" class="fa-brands fa-instagram"></a> | ||
<a href="#" class="fa-brands fa-twitter"></a> | ||
<a href="#" class="fa-brands fa-facebook"></a> | ||
</div> --> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
|
||
<script src="script.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters