mirror of
https://github.com/servo/servo
synced 2026-05-08 16:12:15 +02:00
22 lines
270 B
HTML
22 lines
270 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
p.normal {
|
|
font-style: normal;
|
|
}
|
|
|
|
p.oblique {
|
|
font-style: oblique;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<p class="normal">This is a paragraph, normal.</p>
|
|
<p class="oblique">This is a paragraph, italic(oblique).</p>
|
|
|
|
</body>
|
|
</html>
|
|
|