28 lines
554 B
HTML
28 lines
554 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>datauri test</title>
|
|
<meta charset="utf-8" />
|
|
<link href="../../tmp/base64.css" rel="stylesheet" />
|
|
<style>
|
|
div
|
|
{
|
|
width: 300px;
|
|
height: 300px;
|
|
float: left;
|
|
border: 1px solid gray;
|
|
text-align: center;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="data-test-png">png</div>
|
|
<div class="data-test-gif">gif</div>
|
|
<div class="data-test-jpg">jpg</div>
|
|
<div class="data-test-bmp">bmp</div>
|
|
</body>
|
|
|
|
</html> |