21 lines
585 B
HTML
21 lines
585 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns='http://www.w3.org/1999/xhtml' xml:subLang='en'>
|
|
<head>
|
|
<title>Change to wait cursor</title>
|
|
<style rel='stylesheet' type='text/css'>
|
|
div {
|
|
width: 200px;
|
|
height: 200px;
|
|
border: 2px solid rgb(202, 169, 140);
|
|
margin: 4px;
|
|
cursor: wait;
|
|
background: pink;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>Take away love, and our earth is a tomb. Robert Browning</div>
|
|
</body>
|
|
</html>
|
|
|