forked from starrohan999/Hacktoberfest-Accepted
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact_us.html
77 lines (71 loc) · 2.32 KB
/
Contact_us.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
<!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 Us</title>
<style>
body{
background: url("https://www.internetmatters.org/wp-content/uploads/2019/07/contact-us-image.png");
background-repeat: no-repeat;
background-size: 100%;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
margin: 100px 300px;
padding: 10px;
}
.container{
padding: 5px 20px 15px 20px;
}
input[type="text"],
input[type="email"],
textarea{
background-color: aliceblue;
border-radius: 4px;
padding: 8px;
border:2px solid aliceblue;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
height: 20px;
width: 400px;
}
textarea{
height: 40px;
width: 400px;
}
h1{
font-size: 200%;
margin-left: 0px;
margin-bottom: -10px;
}
input[type="submit"]{
background-color: rgb(12, 166, 226);
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
color: whitesmoke;
padding: 8px;
border: none;
border-radius: 4px;
cursor: pointer;
height: 40px;
width: 100px;
}
input[type="submit"]:hover{
background-color: rgb(9, 245, 99);
}
</style>
</head>
<body>
<div class="container">
<form action="">
<div class="main_heading">
<h1>Contact Us</h1>
<p>Please fill all the texts in the fields</p>
</div>
<p><input type="text" name="Name" placeholder="Full Name"></p>
<p><input type="email" name="Email" id="email" placeholder="Email"></p>
<p><textarea name="message" id="message" cols="30" rows="10" placeholder="Message"></textarea></p>
<p><input type="text" name="Subject" placeholder="Subject"></p>
<input type="submit" value="Send">
</form>
</div>
</body>
</html>