-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
executable file
·35 lines (34 loc) · 1.29 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
<?php include("include/header.php");?>
<main>
<a href="index.php" class="home-button"><span class="fas fa-home" style="font-size: 40px; color:#bc5148;"></span></a><br />
<h1 class="mb-5">Contact Me</h1>
<form action="#" method="post">
<div class="row mb-4">
<div class="col-md-12">
<input type="text" class="form-control" placeholder="Full Name">
</div>
</div>
<div class="row mb-4">
<div class="col-md-12">
<input type="text" class="form-control" placeholder="Email Address">
</div>
</div>
<div class="row mb-4">
<div class="col-md-12">
<input type="text" class="form-control" placeholder="Phone">
</div>
</div>
<div class="row mb-4">
<div class="col-md-12">
<textarea name="#" id="" class="form-control" placeholder="Write some words of encouragement" cols="30" rows="10"></textarea>
</div>
</div>
<div class="row">
<div class="col-md-12">
<input type="submit" class="btn btn-primary btn-block" value="Send Message">
</div>
</div>
</form>
</main>
</div>
<?php include("include/footer.php");?>