mirror of
https://github.com/servo/servo.git
synced 2025-06-13 19:04:30 +00:00
21 lines
267 B
HTML
21 lines
267 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
p.normal {
|
|
font-style: normal;
|
|
}
|
|
|
|
p.italic {
|
|
font-style: italic;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<p class="normal">This is a paragraph, normal.</p>
|
|
<p class="italic">This is a paragraph, italic(oblique).</p>
|
|
|
|
</body>
|
|
</html>
|
|
|