20 lines
267 B
HTML
20 lines
267 B
HTML
<html>
|
|
<head><title>Boid</title>
|
|
<style>
|
|
.boid {
|
|
position: absolute;
|
|
width: 10px;
|
|
height: 10px;
|
|
background: #333;
|
|
-moz-border-radius: 40px;
|
|
-webkit-border-radius: 40px;
|
|
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="playground">
|
|
</div>
|
|
</body>
|
|
</html>
|