mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 18:56:29 +02:00
25 lines
785 B
HTML
25 lines
785 B
HTML
<html>
|
|
<head>
|
|
<title>CSS layout</title>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro&display=swap" rel="stylesheet">
|
|
<link href="https://unpkg.com/tachyons@4.10.0/css/tachyons.min.css" rel="stylesheet">
|
|
<link href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/dracula.min.css" rel="stylesheet">
|
|
<style>
|
|
body {
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
code {
|
|
border-radius: 4px;
|
|
font-family: 'Source Code Pro', monospace;
|
|
font-size: 14px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="avenir w-100">
|
|
<div id="root"></div>
|
|
<script src="./index.jsx"></script>
|
|
</body>
|
|
</html>
|