-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
84 lines (68 loc) · 2.11 KB
/
Contact.html
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
<!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>contact</title>
<style>
body {
background: center/cover no-repeat url("bg7.jpg");
opacity: 0.8;
}
.container {
text-align: center;
justify-content: center;
/* display: flex; */
}
h1 {
text-align: center;
justify-content: center;
margin-top: 23px;
padding: 23px;
color: red;
font-weight: bold;
font: bold;
/* font-size: 23px; */
}
.myInput {
display: flex;
/* text-align: center; */
justify-content: center;
/* align-items: center; */
width: 60%;
margin: 24px 280px;
padding: 9px 0px;
border: 2px solid black;
border-radius: 10px;
}
#btn {
text-align: center;
justify-content: center;
align-items: center;
width: 60%;
margin: 8px 280px;
padding: 9px 0px;
border: 2px solid black;
border-radius: 15px;
font-weight: bold;
font-size: 23px;
}
</style>
</head>
<body>
<div class="container">
<h1>
CONTACT US
</h1>
<form action="contact.php" method="POST">
<input type="text" class="myInput" name="firstName" placeholder="your firstName">
<input type="lastName" class="myInput" name="password" placeholder="your lastName">
<input type="email" class="myInput" name="email" placeholder="your email">
<input type="address" class="myInput" name="address" placeholder="your address">
<textarea name="info" class="myInput" cols="30" rows="10" placeholder="tell me abut yourself"></textarea>
<button id="btn">submit</button>
</form>
</div>
</body>
</html>