1
0
mirror of https://github.com/jdan/98.css.git synced 2026-05-05 06:01:22 +09:00

dedent code block

This commit is contained in:
Jordan Scales
2020-04-26 11:37:51 -04:00
committed by GitHub
parent c1bb991c5e
commit 885a7f891f

View File

@@ -16,24 +16,24 @@ The easiest way to use 98.css is to import it from [unpkg](https://unpkg.com/).
```html ```html
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<title>98.css example</title> <title>98.css example</title>
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<link rel="stylesheet" href="https://unpkg.com/98.css" /> <link rel="stylesheet" href="https://unpkg.com/98.css" />
</head> </head>
<body> <body>
<div class="window" style="margin: 32px; width: 250px"> <div class="window" style="margin: 32px; width: 250px">
<div class="title-bar"> <div class="title-bar">
<div class="title-bar-text"> <div class="title-bar-text">
My First VB4 Program My First VB4 Program
</div>
</div>
<div class="window-body">
<p>Hello, world!</p>
</div> </div>
</div> </div>
</body> <div class="window-body">
<p>Hello, world!</p>
</div>
</div>
</body>
</html> </html>
``` ```