-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
54 lines (41 loc) · 2.17 KB
/
contact.php
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
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<!--
- IRM4900 Capstone Project - Fall 2023/ Winter 2024
- Using Generative Artificial Intelligence for Age-Appropriate Text Summarization
- Team Members
- Technical Lead: Jamila Johnson | 101206365
- Documentation: Phoebe Chong | 101075924
- Lead Developer/AI: Ilona Krasnova | 101211529
- UI/UX Designer: Morgan Gardiner | 101024884
- Rescribe's contact page. Used to allow students, teachers and parents the ability to
- provide feedback, send inquires, make complaints etc.
-->
<html lang="en">
<!--Head element used to contain metadata, estabilish the website's title and import google fonts-->
<head>
<?php include("head.php"); ?>
<title>Rescribe: Contact</title>
</head>
<body>
<?php include("header.php"); ?>
<div class="centerLayout">
<div class="centerMainLayout">
<h1 class="centerPageHeader">Contact us</h1>
<p class="centerPagePara">If you have any questions or just want to say hi, drop us a message below! We’d love to hear from you.
</p>
</div><!--end of center main layout-->
<div class="centerLayoutImage">
<img src="images/contactOwlLetter.svg" alt="Owl holding a letter" class="centerLayoutOwl">
</div><!--end of center layout image-->
<div class="contactIcons">
<img src="images/icons8-email-50.png" alt="Email icon" class="emailIcon">
<p class="emailPara">[email protected]</p>
<img src="images/icons8-location-50.png" alt="Address icon" class="emailIcon">
<p class="addressPara">1125 Colonel By Dr, Ottawa, ON</p>
<img src="images/icons8-phone-50.png" alt="Phone icon" class="emailIcon">
<p class="phonePara">(613) 520-2600</p>
</div><!--end of contact icons-->
</div><!--end of center layout-->
<?php include("footer.php"); ?>
</body>
</html>