mirror of
https://github.com/servo/servo.git
synced 2025-06-17 12:54:28 +00:00
21 lines
444 B
HTML
21 lines
444 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.fa {
|
|
display: 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>
|