forked from incubateind/FrontendInternTaskSummer2020
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyashraj_singh
83 lines (72 loc) · 1.41 KB
/
yashraj_singh
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
<html lang="en">
<head>
<title>Page Title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
/* Style the body */
body {
font-family: Arial;
margin: 0;
}
/* Header/Logo Title */
.button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 16px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
}
.button1 {
background-color: white;
color: black;
border: 2px solid #4CAF50;
}
.button1:hover {
background-color: #555555;
color: white;
}
.header {
padding: 60px;
text-align: center;
background: #1abc9c;
color: white;
font-size: 30px;
}
/* Page Content */
.content {padding:20px;}
div.a {
text-indent:37%;
color: red;
}
div.b {
text-indent: 45%;
}
.c {
text-indent: 30%;
}
</style>
</head>
<body>
<div class="header">
<h1>Thank You</h1>
<h3>Successfully Filled the form</h1>
</div>
<div class="log-form">
<div class="a">
<h2 class="text-right">To fill Other Form Click Here</h2>
<form method="get" action="file:///C:/Users/a/Desktop/intern/FrontendInternTaskSummer2020-master/LoginPageTask/index.html">
<div class="b">
<button type="submit" class="button button1">Click</button>
</div>
</form>
</div>
</div>
</body>
</html>