mirror of
https://github.com/servo/servo.git
synced 2025-06-20 07:08:59 +01:00
21 lines
451 B
HTML
21 lines
451 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.fa {
|
|
display: inline-block;
|
|
transform: translate(0, 0);
|
|
opacity: 0.5;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div style="padding: 100px 0 0 0;">
|
|
<div class="fa">A</div>
|
|
</div>
|
|
</body>
|
|
</html>
|