mirror of
https://github.com/servo/servo.git
synced 2025-06-16 20:34:30 +00:00
18 lines
282 B
HTML
18 lines
282 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
.col { color:blue; }
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
Hello,<span> Servo</span>
|
|
<div class="servo">Hello, Servo</div>
|
|
<div class="col">Smile</div>
|
|
<span>Servo</span>
|
|
<div class="col">And thanks</div>
|
|
<div>Hello,</div>
|
|
<span>Rust</span>
|
|
</body>
|
|
</html>
|