-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsass-tests.html
More file actions
44 lines (40 loc) · 852 Bytes
/
sass-tests.html
File metadata and controls
44 lines (40 loc) · 852 Bytes
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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatibile" content="IE=edge,chrome=1">
<title>SASS Tests</title>
<link rel="stylesheet" href="css/global.css">
</head>
<body>
<div id="container">
<header>
<h2>Albums I Like</h2>
</header>
<div role="main">
<ul class="album">
<li>
<a href="#">
<span class="cover db-xxx"></span>
<p>
<span class="title">XXX</span>
<span class="artist">Danny Brown</span>
</p>
</a>
</li>
<li>
<a href="#">
<span class="cover absoul-cs"></span>
<p>
<span class="title">Control System</span>
<span class="artist">Ab Soul</span>
</p>
</a>
</li>
</ul>
</div>
<footer>
</footer>
</div>
</body>
</html>