Skip to content

Instantly share code, notes, and snippets.

@jdanyow
Last active February 18, 2022 22:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jdanyow/49883f13e609e9b558f90b7bf219f1e6 to your computer and use it in GitHub Desktop.
Save jdanyow/49883f13e609e9b558f90b7bf219f1e6 to your computer and use it in GitHub Desktop.
Atlas
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="color-scheme" content="light dark">
<title>Microsoft Atlas</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@microsoft/atlas-css/dist/index.css">
</head>
<body class="markdown padding-sm padding-xl-tablet padding-xxl-desktop">
<h1>Hello world!</h1>
<table class="table table-sm">
<thead>
<tr>
<th>Fruit</th>
<th>Color</th>
</tr>
</thead>
<tbody>
<tr>
<td>Apple</td>
<td>Red</td>
</tr>
<tr>
<td>Banana</td>
<td>Yellow</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment