You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
324 B
HTML
19 lines
324 B
HTML
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>CSS Grid Demo</title>
|
|
<link rel="stylesheet" href="/app.css">
|
|
</head>
|
|
<body>
|
|
<div id="container" class="grid">
|
|
<div id=item1>
|
|
Item 1 contents
|
|
</div>
|
|
<div id=item2>
|
|
Item 2 contents
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|