Last active
February 18, 2022 22:01
-
-
Save jdanyow/49883f13e609e9b558f90b7bf219f1e6 to your computer and use it in GitHub Desktop.
Atlas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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