forked from 55minutes/css3-foundation
-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
98 lines (86 loc) · 4.68 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en-us">
<head>
<!-- meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<!-- stylesheets -->
<link rel="stylesheet" media="all" href="distribution/styles/styles.css">
<!-- conditional comments -->
<!--[if IE]>
<link rel="stylesheet" media="all" href="distribution/styles/ie.css">
<![endif]-->
<!-- print stylesheet -->
<link rel="stylesheet" media="print" href="distribution/styles/print.css">
<!-- external styles -->
<!-- <link rel="stylesheet" media="all" href="http://code.jquery.com/ui/1.8.23/themes/redmond/jquery-ui.css"> -->
<!-- Favicons and touch icons -->
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="images/app-icons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/app-icons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/app-icons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/app-icons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon-precomposed" sizes="60x60" href="images/app-icons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="images/app-icons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon-precomposed" sizes="76x76" href="images/app-icons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="images/app-icons/apple-touch-icon-152x152.png">
<link rel="icon" type="image/png" href="images/app-icons/favicon-196x196.png" sizes="196x196">
<link rel="icon" type="image/png" href="images/app-icons/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="images/app-icons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="images/app-icons/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="images/app-icons/favicon-128.png" sizes="128x128">
<meta name="application-name" content="CSS3/HTML5 Scaffolding">
<meta name="msapplication-TileColor" content="#FFFFFF">
<meta name="msapplication-TileImage" content="images/app-icons/mstile-144x144.png">
<meta name="msapplication-square70x70logo" content="images/app-icons/mstile-70x70.png">
<meta name="msapplication-square150x150logo" content="images/app-icons/mstile-150x150.png">
<meta name="msapplication-wide310x150logo" content="images/app-icons/mstile-310x150.png">
<meta name="msapplication-square310x310logo" content="images/app-icons/mstile-310x310.png">
<link href="favicon.ico" rel="shortcut icon" type="image/x-icon">
<!-- header javascript -->
<script src="distribution/scripts/application-header.js">
</script>
<title>HTML/CSS scaffolding</title>
</head>
<body id="home" class="documentation">
<header class="page-header">
<nav>
<a class="current" href="index.html">Home</a>
<a href="style-guide.html">Style guide</a>
<a href="login.html">Sample login page</a>
<a href="font-weight-tester.html">Font weight tester</a>
<a href="parallax.html">Parallax scrolling example</a>
</nav>
</header>
<div class="page">
<!-- If you have a multitude of pages you want styled just like this one, just
add a class of "documentation" to the body tag, then add links to each page
in the nav, as below. -->
<section id="about">
<h1>HTML/CSS scaffolding</h1>
<p>These files contain a CSS3/HTML5 scaffolding. The markup and styling contained within may be used as a bootstrap for a variety of web projects, ranging from simple, static websites to full-fledged web applications built with the framework of your choice.</p>
<h2>Goals and features</h2>
<ul>
<li>Best practices employed throughout the code base</li>
<li>Clean, readable, semantic markup</li>
<li>Fluid, responsive layout</li>
<li>Modern, fresh tools and techniques</li>
</ul>
</section> <!-- /#content -->
<section id="resources">
<h2>Resources</h2>
<ul>
<li><a href="https://github.com/ravasthi/css3-foundation">css3-foundation on Github</a></li>
<li><a href="http://sass-lang.com/" title="Sass - Syntactically Awesome Stylesheets">Sass</a></li>
<li><a href="http://susy.oddbird.net" title="Susy">Susy</a></li>
<li><a href="https://github.com/ravasthi/">My other open-source projects</a></li>
</ul>
</section> <!-- /#resources -->
<footer>
</footer>
</div> <!-- /.page -->
<!-- all other javascript goes at the end of the body -->
<script src="distribution/scripts/application.js">
</script>
</body>
</html>