-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactUsCapstone.htm
More file actions
91 lines (80 loc) · 1.53 KB
/
ContactUsCapstone.htm
File metadata and controls
91 lines (80 loc) · 1.53 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
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
background-color: black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
div{
width: 900px;
height: 1200px;
background-color: olive;
}
h1{
text-align: center;
text-decoration: underline;
color: blueviolet;
animation: glow 1.75s ease-in-out infinite reverse ;
}
h2{
text-align: center;
}
textarea{
max-width:880px;
max-height: 500px;
}
@keyframes glow {
0% { color: #00eaff; }
25% { color: #7b2ff7; }
50% { color: #ff2e63; }
75% { color: #f9ed69; }
100% { color: #00eaff; }
}
#submits
{
border: 3px solid black;
border-radius: 5px;
background-color: #9f4789;
color: coral;
}
textarea {
display: block;
margin: 0 auto;
}
button
{
display: block;
margin: 10px auto;
}
</style>
</head>
<body>
<h1>
GET IN TOUCH WITH US.
</h1>
<div>
<h2>WHATSAPP:- +91 9876543210</h2>
<br>
<h2>EMAIL: healthcare@gmail.com</h2>
<br>
<h2>
WE VALUE YOUR FEEDBACK
</h2>
<textarea></textarea>
<button id="submits">Submit</button>
</div>
<script>
let submits = document.getElementById("submits");
submits.addEventListener("click",function(){
alert("Feedback submitted.Thanks 🙏")
})
</script>
</body>
</html>