You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
531 B
HTML
32 lines
531 B
HTML
2 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>t t t</title>
|
||
|
<script src="ttt.js" defer></script>
|
||
|
<style>
|
||
|
#ttt {
|
||
|
position: absolute;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100vw;
|
||
|
height: 100vh;
|
||
|
}
|
||
|
|
||
|
#s {
|
||
|
position: absolute;
|
||
|
top: 100px;
|
||
|
left: 100px;
|
||
|
z-index: 50;
|
||
|
}
|
||
|
|
||
|
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<button id="s">Send</button>
|
||
|
<div id="ttt"></div>
|
||
|
</body>
|
||
|
</html>
|