-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.php
More file actions
40 lines (28 loc) · 1.12 KB
/
Copy pathcontact.php
File metadata and controls
40 lines (28 loc) · 1.12 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
<link rel="stylesheet" href="css/contact.css">
</head>
<body>
<?php
include('nav.php');
?>
<div class="contact">
<h1> Contact us using the following platforms: </h1>
<div class="links">
<p><strong><a href="https://www.gmail.com"> Email </a>: </strong> <em> reddit2.0@gmail.com </em></p>
<img src="images/email.png" alt="Gmail" height="75px" width="75px">
<p><strong> <a href="https://www.instagram.com"> Instagram </a>:</strong> <em> Reddit 2.0 </em> </p>
<img src="images/Instagram_logo.png" alt="Gmail" height="75px" width="75px">
<p><strong> <a href="https://www.twitter.com"> Twitter</a>:</strong> <em> Reddit 2.0 </em> </p>
<img src="images/twitter.png" alt="Gmail" height="75px" width="75px">
<p><strong> <a href="https://www.facebook.com"> Facebook </a>: </strong> <em> Reddit 2.0 </em> </p>
<img src="images/fb.png" alt="Gmail" height="75px" width="75px">
</div>
</div>
</body>
</html>