mirror of
https://github.com/servo/servo.git
synced 2025-06-13 10:54:29 +00:00
26 lines
446 B
HTML
26 lines
446 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" type="text/css" href="css/ahem.css">
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-size: 25px;
|
|
}
|
|
#a, #b {
|
|
text-align: left;
|
|
}
|
|
#c, #d {
|
|
text-align: right;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="a">X</div>
|
|
<div id="b">X</div>
|
|
<div id="c">X</div>
|
|
<div id="d">X</div>
|
|
</body>
|
|
</html>
|
|
|