1
0
mirror of https://github.com/jdan/98.css.git synced 2025-09-08 21:20:50 +02: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
<!DOCTYPE html>
<html>
<head>
<title>98.css example</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="https://unpkg.com/98.css" />
</head>
<head>
<title>98.css example</title>
<meta charset="UTF-8" />
<link rel="stylesheet" href="https://unpkg.com/98.css" />
</head>
<body>
<div class="window" style="margin: 32px; width: 250px">
<div class="title-bar">
<div class="title-bar-text">
My First VB4 Program
</div>
</div>
<div class="window-body">
<p>Hello, world!</p>
<body>
<div class="window" style="margin: 32px; width: 250px">
<div class="title-bar">
<div class="title-bar-text">
My First VB4 Program
</div>
</div>
</body>
<div class="window-body">
<p>Hello, world!</p>
</div>
</div>
</body>
</html>
```