-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.php
50 lines (33 loc) · 1.2 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
<?php
require_once 'html-builder.php';
?>
<!DOCTYPE html>
<html>
<head>
<!-- PHP Header call [Title, Charset, and Icon Link] -->
<?php insertHeader("Contact"); ?>
<!-- Bootstrap and font awesome-->
<link href="./css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="./css/font-awesome.min.css" rel="stylesheet" type="text/css"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/1.1.3/sweetalert.min.css">
<style>
#sendContact:hover{
color:white;
background-color:blue;
font-size:1.5em;
font-weight:bold;
}
</style>
</head>
<body>
<!-- BEGIN NAVBAR -->
<?php
require_once 'contact_form.php';
insertNav(); ?>
<!-- END NAVBAR -->
<!-- BEGIN MAIN CONTENT-->
<?php insertContactForm(); ?>
<!-- END MAIN CONTENT-->
</body>
</html>