mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
20 lines
270 B
HTML
20 lines
270 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
body {
|
|
font-family: sans-serif;
|
|
}
|
|
#inline1 {
|
|
margin-right: 10px;
|
|
}
|
|
#inline2 {
|
|
margin-left: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><span id="inline1">Hello</span><span id="inline2">Kitty</span></div>
|
|
</body>
|
|
</html>
|