19 lines
422 B
HTML
19 lines
422 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="ahem.css" />
|
|
<title>Text runs that are separated by a block-level line will get separate backplates.</title>
|
|
<style>
|
|
body {
|
|
font: 20px Ahem;
|
|
}
|
|
.sample {
|
|
background-image: url("blue.png");
|
|
height: 500px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
ppppp ppppp<div class="sample">ppppp ppppp</div>ppppp ppppp
|
|
</body>
|
|
</html>
|