mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-02 22:08:40 +09:00
16 lines
222 B
HTML
16 lines
222 B
HTML
|
|
<!DOCTYPE HTML>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<style>
|
||
|
|
div {
|
||
|
|
width: 100px;
|
||
|
|
height: 100px;
|
||
|
|
background: green;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<p>There should be a green box below.</p>
|
||
|
|
<div></div>
|
||
|
|
</body>
|
||
|
|
</html>
|