18 lines
293 B
HTML
18 lines
293 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
#box {
|
|
position: absolute;
|
|
top: 80px;
|
|
width: 20px;
|
|
height: 20px;
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body style="height: 10000px;">
|
|
<div id="box"></div>
|
|
</body>
|
|
</html>
|