-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathContact Form Confirm HTML and CSS.html
104 lines (73 loc) · 2.11 KB
/
Contact Form Confirm HTML and CSS.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html>
<head>
<title>
Contact Form
</title>
<link rel="shortcut icon" type="image/jpg" href="C:\Users\hp\Desktop\College\First Semester\Introduction To Web Technologies\Notepad ++ Files\Project\favicon.ico"/>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
margin:0;
padding:0;
font-family: 'Poppins', sans-serif;
}
body{
display:flex;
min-height:100vh;
align-items:center;
justify-content:center;
background: #c8efd1;
}
.box{
height:380px;
width:400px;
background: white;
padding:20px;
box-shadow: 4px 4px 2px rgba(254, 236, 164, 1)
}
.box div{
color: black;
font-size:30px;
font-family:sans-serif;
font-weight:800;
text-align:center;
text-transform:uppercase;
padding:20px 0;
}
.btn{
border-radius:20px;
color:#fff;
margin-top:18px;
padding:10px;
background-color:#47c35a;
font-size:18px;
border:none;
cursor:pointer;
}
.btn:hover {
color: #78d98f;
opacity: 0.8;
transition: 0.3s all ease;
}
</style>
</head>
<body>
<div class="box">
<div>
<h1>
Success!
</h1>
<br>
<h5 style = "text-transform: capitalize;">
Your form has been successfully submitted. We will get back to you within 2 working days.
</h5>
<button type="button" class="btn">
<a href="Home Page HTML.html" style = 'color: white; text-decoration: none;'>
Home
</a>
</button>
</div>
</div>
</body>
</html>