-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact_us.php
114 lines (94 loc) · 3.09 KB
/
contact_us.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AFRICAN SHIPPING</title>
<link rel="stylesheet" href="bootstrap-5.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="font-awesome/css/font-awesome.min.css">
<style>
body {
scroll-behavior: smooth;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
width: 100vw;
background: rgba(35, 201, 223, 0.3);
overflow-y: scroll;
}
.flex-row {
display: flex;
}
.wrapper {
border: 1px solid #4b00ff;
border-right: 0;
}
*{
box-sizing: border-box;
}
input[type=text], select, textarea {
width: 100%;
padding: 12px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}
label {
padding: 12px 12px 12px 0;
display: inline-block;
}
input[type=submit] {
background-color: #0489aa;
color: white;
padding: 12px 20px;
border: none;
border-radius: 10px;
cursor: pointer;
float: right;
}
.container {
border-radius: 10px;
background-color: #f2f2f2;
padding: 50px;
height: 400px;
overflow: auto;
}
</style>
</head>
<body>
<!-- navigation bar here -->
<?php include('navbar.html')?>
<!-- main starts here -->
<main>
<div class="container" style="background-color: whitesmoke;margin-top:0px;">
<h3><div class="title">Contact us!</div></h3>
<br>
<div class="title-info">We'll get back to you soon!</div>
<form action="" method="" class="form">
<div class="input-group">
<label for="first-name">First name</label>
<input type="text" name="first_name" id="first-name" placeholder="First name">
</div>
<div class="input-group">
<label for="last-name">Last name</label>
<input type="text" name="last_name" id="last-name" placeholder="Last Name">
</div>
<div class="input-group">
<label for="e-mail">e-mail</label>
<input type="text" name="e-mail" id="e-mail" placeholder="e-mail">
</div>
<div class="textarea-group">
<label for="message">Message</label>
<textarea name="message" id="message" rows="5" placeholder="Please share with us you're feedback..."></textarea>
</div>
<div class="button-div">
<button type="submit">Send</button>
</div>
</div>
</form>
</main>
</body>
</html>