-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.htm
37 lines (32 loc) · 906 Bytes
/
example.htm
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SASS Vertical Rhythm technique</title>
<meta name="description" content="SASS Vertical Rhythm technique">
<meta name="author" content="JasonLusk">
<link rel="stylesheet" href="example.css?v=1.0">
<!--[if lt IE 9]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<h1>SASS Vertical Rhythm technique</h1>
<p>adjust the $base-unit or $fontSizes variables</p>
<div>
<h1>h1. heading</h1>
<h1 class="p">paragraph</h1>
<h2>h2. heading</h2>
<h2 class="p">paragraph</h2>
<h3>h3. heading</h3>
<h3 class="p">paragraph</h3>
<h4>h4. heading</h4>
<h4 class="p">paragraph</h4>
<h5>h5. heading</h5>
<h5 class="p">paragraph</h5>
<h6>h6. heading</h6>
<h6 class="p">paragraph</h6>
<p>paragraph</p>
</div>
</body>
</html>