-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.php
More file actions
26 lines (24 loc) · 807 Bytes
/
contact.php
File metadata and controls
26 lines (24 loc) · 807 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="./style.css"> <!-- Optional external CSS -->
<style>
.contact-form {
display: flex;
justify-content: center;
}
</style>
</head>
<body>
<?php include './includes/header.php'; ?>
<div class="container">
<div class="contact-form">
<h2>Contact Me</h2>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSduZyKEtjSKlv827tnZkcKPq_531oBRVXFdBen4SYM1HbZ46w/viewform?embedded=true" width="640" height="959" frameborder="0" marginheight="0" marginwidth="0">Chargement…</iframe>
</div>
</div>
</body>
</html>