mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-15 09:30:20 +00:00
25 lines
462 B
HTML
25 lines
462 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Grid</title>
|
|
<style>
|
|
body {
|
|
background: #fff;
|
|
}
|
|
.r {background: red; width: 300px; height: 50px}
|
|
.g {background: green; width: 300px; height: 50px}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class=r></div>
|
|
<div class=g></div>
|
|
<div class=r></div>
|
|
<div class=g></div>
|
|
<div class=r></div>
|
|
<div class=g></div>
|
|
</body>
|
|
</html>
|