-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (31 loc) · 1004 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
25
26
27
28
29
30
31
32
33
34
35
36
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My web page</title>
<meta name="description" content="Tiff's Template">
<meta name="author" content="Tiff Zhang">
<link rel="stylesheet" href="css/main.css">
<script src="js/main.js"></script>
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="container">
<h1>Tiff's Boilerplate</h1>
<p>
A simple collection of starting bits of styling, markup, and whatever to minimize
the repetitive stuff I have to do each time I start off creating a new web app.
</p>
<p>
It contains default choices like a decent font I like and such. <a href="tiffs-boilerplate.zip">Download the zip here.</a>
</p>
<p>
See the source on <a href="https://github.com/shadowfiles/boilerplate">Github</a> or
find more projects by <a href="http://tiffzhang.com/">Tiff Zhang</a>.
</p>
</div>
<div class="clearfix"></div>
</body>
</html>