19 lines
470 B
HTML
19 lines
470 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Reference</title>
|
|
<link rel="author" title="Intel" href="http://www.intel.com">
|
|
<style>
|
|
div {
|
|
font: 1in serif;
|
|
}
|
|
span {
|
|
font-variant: small-caps;
|
|
font-size: 1in;
|
|
font-family: serif;
|
|
line-height: 1em;
|
|
}
|
|
</style>
|
|
<body>
|
|
<p>Test passes if letters "E" below are larger than this text, are capitalized, and if the left "E" is smaller than the right "E".</p>
|
|
<div><span>e</span>E</div>
|
|
</body>
|