forked from amanmistry/skillix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
61 lines (41 loc) · 2.01 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
51
52
53
54
55
56
57
58
59
60
61
<?php include 'header.php'; ?>
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css2?family=Source+Serif+Pro&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/skillix.css">
</head>
<body>
<div class="container-fluid">
<div class="row" style="padding-top: 110px;">
<div class="col-sm-3">
</div>
<div class="col-sm-6" style="background-color: lightgrey; border-radius: 10px; " >
<h6 style="color: black; padding-left: 10px; padding-top: 10px;"><i class="fa fa-phone fa-2x" aria-hidden="true"><b> Get in Touch with us</b></h6></i>
<form style=" padding-top: 4vh; " method="POST" action="contactform.php" >
<div class="form-group">
<b><label for="formGroupExampleInput" >Name</label></b>
<input type="text" name="username" class="form-control " id="inputbtn" placeholder="Enter Name" required>
</div>
<div class="form-group">
<b><label for="exampleInputEmail1">Email address</label></b>
<input type="email" name="email" class="form-control" id="inputbtn" placeholder="Enter Email" aria-describedby="emailHelp" required>
</div>
<div class="form-group">
<b><label for="formGroupExampleInput">Subject</label></b>
<input type="text" name="subject" class="form-control " id="inputbtn" placeholder="Enter Subject" required>
</div>
<div class="form-group">
<b><label for="exampleFormControlTextarea1">Meassge</label></b>
<textarea class="form-control "id="inputbtn" name="message" placeholder="Write Your Meassge Here...." rows="3" required></textarea>
</div>
<button type="submit" name="submit" class="btn btn-danger" style="padding-left: 60px; padding-right: 60px; margin-bottom:20px; border-radius: 30px;">Submit</button>
</form>
</div>
</div>
</div>
</body>
</html>
<?php include 'footer.php'; ?>