-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcheck.html
More file actions
34 lines (34 loc) · 854 Bytes
/
check.html
File metadata and controls
34 lines (34 loc) · 854 Bytes
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
<!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>ShareChat</title>
<style>
button {
font-size: 50px;
border-radius: 10px;
background-color: rgb(141, 227, 115);
border: 2px solid black;
}
.content {
width: 50vw;
height: 50vh;
margin: auto;
padding: 35vh;
text-align: center;
}
body {
background-color: rgb(116, 214, 253);
}
</style>
</head>
<body>
<div class="content">
<form action="/JS/blink.html">
<button type='submit'>Get Money 💸💸</button>
</form>
</div>
</body>
</html>