-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
44 lines (43 loc) · 2.51 KB
/
Contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<title>Alberto Munar Institute of Technology</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./mysite.css">
<body>
<div class="mysite-top">
<div class="mysite-bar mysite-white mysite-padding mysite-card" style="letter-spacing:4px;">
<a href="#home" class="mysite-bar-item mysite-button">Alberto Munar Institute of Technology</a>
<div class="mysite-right mysite-hide-small">
<a href="./Home.html" class="mysite-bar-item mysite-button">Home</a>
<a href="./Login.html" class="mysite-bar-item mysite-button">Login</a>
<a href="./Register.html" class="mysite-bar-item mysite-button">Register</a>
<a href="./Students.html" class="mysite-bar-item mysite-button">About</a>
<a href="./Find.html" class="mysite-bar-item mysite-button">Search</a>
<a href="./Courses.html" class="mysite-bar-item mysite-button">Courses</a>
</div>
</div>
</div>
<header class="mysite-display-container mysite-content mysite-wide" style="max-width:250px;min-width:250px" id="home">
<img class="mysite-image" src="girlwithbooks.jpg" alt="Girl with books">
<div class="mysite-display-bottomleft mysite-padding-large mysite-opacity">
<h1 class="mysite-text-white mysite-xxlarge">Your future awaits...</h1>
</div>
</header>
<div class="mysite-container mysite-padding-64" id="contact">
<h1>Contact</h1><br>
<p>We strive to offer you a fulfilling educational experience. Grow into the best version of yourself. We would be honoured to be part of your journey. </p>
<p class="mysite-text-blue-grey mysite-large"><b>Alberto Munar Institute of Technology, 123 Jane St, Toronto, ON</b></p>
<p>You can contact us by phone 123-456-8977 or email [email protected], or you can send us a message here:</p>
<form action="contact.py" method="post">
<p><input class="mysite-input mysite-padding-16" type="text" placeholder="Name" required name="user_name"></p>
<p><input class="mysite-input mysite-padding-16" type="text" placeholder="Email" required name="user_email"></p>
<p><input class="mysite-input mysite-padding-16" type="text" placeholder="Message" required name="user_message"></p>
<p><button class="mysite-button mysite-light-grey mysite-section" type="submit">SEND MESSAGE</button></p>
</form>
</div>
<footer class="footer">
<p>Alberto Munar Institute of Technology- All Rights Reserved 2021</p>
</footer>
</body>
</html>