-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsakshi1.html
103 lines (84 loc) · 2.3 KB
/
sakshi1.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
<!DOCTYPE html>
<!-- saved from url=(0048)file:///C:/Users/Sakshi/Downloads/fin%20(4).html -->
<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<style>
body {
background: #ffcc00;
padding-top: 5em;
background-image:url("n.png");
}
.all_data{
text-align:center;
}
/* DEMO-SPECIFIC STYLES */
.typewriter h1 {
color: black;
font-size: 70px;
font-family: monospace;
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: .15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 0 auto;
/* Gives that scrolling effect as the typing happens */
letter-spacing: .15em; /* Adjust as needed */
animation:
typing 3.5s steps(30, end),
blink-caret .5s step-end infinite;
}
.type1 h1 {
color: black;
font-size: 30px;
font-family: monospace;
overflow: hidden; /* Ensures the content is not revealed until the animation */
border-right: .15em solid orange; /* The typwriter cursor */
white-space: nowrap; /* Keeps the content on a single line */
margin: 50px;
padding: 50px; /* Gives that scrolling effect as the typing happens */
letter-spacing: .15em; /* Adjust as needed */
animation:
typing 3.5s steps(30, end),
blink-caret .5s step-end infinite;
}
/* The typing effect */
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
from, to { border-color: transparent}
50% { border-color: black }
}
.button {
background-color: #555555;; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<center>
<div class="row">
<div class="typewriter">
<h1>CUSTOMER CARE!! </h1>
</div>
</div>
</center>
<div class="all_data" style="">
<h1> What is the problem you are facing?</h1><br>
<textarea rows="5" cols="80"></textarea>
<h1> Since when are you facing it?</h1><br>
<textarea rows="5" cols="80"></textarea>
<h1> Feedbacks for the system</h1><br>
<textarea rows="5" cols="80"></textarea>
<br>
<button class="button button5">SUBMIT</button>
</div>
</body></html>