-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
115 lines (108 loc) · 3.58 KB
/
index.html
File metadata and controls
115 lines (108 loc) · 3.58 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Chat</title>
<link rel="icon" href="/assets/chat-ico.png">
<link rel="stylesheet" href="open.css">
<style>
/* links styling */
.links{
margin-top:4vh;
}
a{
text-decoration: none;
display: inline-block;
color: blueviolet;
}
i{
display: block;
width: max-content;
}
i a{
float: right;
margin-left: 25px;
}
input {
height: 100% !important;
max-height: 50px;
font-size: 2rem;
z-index: 3;
box-shadow: 0 0 5px greenyellow;
transition: .5s ease-in-out;
border-radius:8px;
padding: 10px;
}
input:hover{
box-shadow: 0 0 10px cyan;
background: greenyellow;
}
input[type="text"] {
margin: 0px 0px 0px 3%;
width: 240px !important;
text-align: center;
background: azure !important;
}
input[type="submit"] {
margin: 0px 3% 0px 0px;
padding: 0px 12px !important;
}
input[type="submit"]:hover{
cursor: pointer;
}
body {
background-color: yellow;
background: url(./assets/man-bg.jpg) top center /cover no-repeat;
position: relative;
}
/* body::before{
content: "welcome!!";
font-size: 2rem;
color: white;
text-align: center;
position: absolute;
height: 100vh;width: 100vw;
top: -15vh;
display: block;
background:rgba(78, 78, 138, 0.3);
z-index: -1;
} */
</style>
</head>
<body>
<div class="container">
<input placeholder="Input Number" type="text" id="numb" required oninput="chk()">
<input type="submit" value="OPEN" onclick="send()">
</div>
<div id="screen"></div>
<footer>
<div class="fotter">
<b>
© COPYRIGHT
<span>
Nikhil Tiwari 2021
</span>
</b>
<span>
All Rights Reserved.
</span>
<div class="links">
<i>
<i class="cen">Image-Source : <a href="https://pixabay.com" target="_blank">PixaBay-Liberary</a></i>
Image by :
<a href="https://pixabay.com/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=4807395">Pixabay</a>
<a target="_blank" href="https://pixabay.com/users/cdd20-1193381/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=4807395">Cdd20</a>
</i>
<i>
Logo Image by :
<a href="https://pixabay.com/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=1844471">Pixabay</a>
<a target="_blank" href="https://pixabay.com/users/elisariva-1348268/?utm_source=link-attribution&utm_medium=referral&utm_campaign=image&utm_content=1844471">ElisaRiva</a>
</i>
</div>
</div>
</footer>
</body>
<script src="open.js"></script>
</html>