-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds index.html with link to Tachyons on CDN so people can get starte…
…d easily.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | ||
<title>Tachyons Tutorial</title> | ||
<!-- Pure CSS is a minimalist CSS file we have included to make things look nicer --> | ||
<link rel="stylesheet" href="https://unpkg.com/[email protected]/css/tachyons.min.css"> | ||
<link rel="shortcut icon" type="image/png" href="http://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="http://tachyons.io/components/">Component Guide</a> | ||
</p> | ||
</div> | ||
|
||
<!-- debug grid is perfect for learning CSS positioning! see: http://tachyons.io/xray/ --> | ||
<link rel="stylesheet" href="http://npmcdn.com/[email protected]/css/tachyons-debug-grid.min.css" /> | ||
</body> | ||
</html> |