-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
44 lines (43 loc) · 1.47 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
<?php
$title = 'Contact Us';
include('Common/head.php');
include('Common/navbar.php');
?>
<div class="div_marketplace">
<h2>Contacts</h2>
<div class="flex">
<div class="center">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="Img/Ali.jpeg" alt="Ali" style="width:300px;height: 400px;">
</div>
<div class="flip-card-back"><br>
<h3>Ali Haider</h3><br>
<p>Computer Science Student</p>
<p>Matricola: 4811831</p>
<p>[email protected]</p>
</div>
</div>
</div>
</div>
<div class="center">
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="Img/Giacomo.jpeg" alt="Giacomo" style="width:300px;height:400px;">
</div>
<div class="flip-card-back"><br>
<h3>Giacomo Pedemonte</h3><br>
<p>Computer Science Student</p>
<p>Matricola: 4861715</p>
<p>[email protected]</p>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
include('Common/footer.php');
?>