-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmessage.html
More file actions
81 lines (65 loc) · 1.89 KB
/
Copy pathmessage.html
File metadata and controls
81 lines (65 loc) · 1.89 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title></title>
<style>
#message{
position: absolute;
width: 30%;
height: auto;
top: 50px;
right: 20px;
background: lightcyan;
font-family: 'Poppins', sans-serif, 'arial';
line-height: 50px;
text-align: center;
border-bottom: 4em solid maroon;
}
#up{
position: relative;
top: 0px;
right: 0px;
background: papayawhip;
width: 100%;
height: 100px;
}
.cc{
width: 17em;
height: 2em;
text-align: center;
}
#sub{
font-family: comic sans ms;
}
label{
font-family: comic sans ms;
color: silver;
text-shadow: 1px 1px 1px white;
font-weight: bold;
}
h2{
font: 700 25px system-ui;
color: white;
text-shadow: 2px 2px 4px #000000;
}
</style>
</head>
<body>
<div id="message">
<div id="up"><img src="man.png" id="man"></div>
<h2>We'd love to hear from you!!</h2>
<form name="msg" method="POST" action="#">
<label for="name">NAME</label>
<input type="text" name="name" class="cc" placeholder="name" required><br>
<label for="name">EMAIL</label>
<input type="email" name="email" class="cc" placeholder="email" required><br>
<label for="name">PHONE</label>
<input type="email" name="telephone" class="cc" placeholder="phone" required><br>
<label for="message">MESSAGE</label>
<textarea class="cc" placeholder="message" required></textarea><br>
<input type="submit" name="submit" id="sub" value="submit">
</div>
</body>
</html>