mirror of
https://github.com/servo/servo.git
synced 2025-06-11 10:00:18 +00:00
17 lines
325 B
HTML
17 lines
325 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<style type="text/css">
|
|
p:before {
|
|
content: "A";
|
|
}
|
|
.big {
|
|
font-size: 128px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body style="color: red; font-size: 64px;">
|
|
<p style="color: green;" class="big">B</p>
|
|
</body>
|
|
</html>
|