-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathindex.html
24 lines (23 loc) · 1003 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<title>Tachyons Tutorial</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.8.1/css/tachyons.min.css">
<link rel="shortcut icon" type="image/png" href="https://www.dwyl.io/img/favicon.ico"/>
</head>
<body class="debug-grid">
<div class="pa4-l">
<h1 class="white bg-gray mw7 center pa4 br2-ns ba b--black-10">Hello World!</h1>
</div>
<div id="main" class="pl4">
<p>If you need inspiration getting started with learning Tachyons,
check the <a href="https://tachyons.io/components/">Component Guide</a>
</p>
</div>
<!-- debug grid is perfect for learning CSS positioning! see: https://tachyons.io/xray/ -->
<link rel="stylesheet" href="https://unpkg.com/tachyons-debug-grid@1.2.3/css/tachyons-debug-grid.min.css" />
</body>
</html>