-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathFeedback Form Confirm HTML and CSS.html
58 lines (56 loc) · 1.43 KB
/
Feedback 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
<!DOCTYPE html>
<html>
<head>
<title>Feedback</title>
<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:#101012;
padding:20px;
box-shadow: 4px 4px 2px #fdd01c;
}
.box div{
color:#ffe400;
font-size:30px;
font-family:sans-serif;
font-weight:800;
text-align:center;
padding:20px 0;
}
.btn{
border-radius:20px;
color:#fff;
margin-top:18px;
padding:10px;
background-color:#47c35a;
font-size:18px;
border:none;
cursor:pointer;
}
</style>
<link rel="shortcut icon" type="image/jpg" href="C:\Users\hp\Desktop\College\First Semester\Introduction To Web Technologies\Notepad ++ Files\Project\favicon.ico"/>
</head>
<body>
<div class="box">
<div>
<h1>Thank You</h1><br>
<h5>Your feedback has been submitted. We shall take it into consideration to improve our website.</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>