-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (43 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<title>Sassy Sass</title>
<meta name="description" content="the bare minimum to start any webstuff">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="variables.html">variables</a></li>
<li><a href="nesting.html">nesting</a></li>
<li><a href="inheritance.html">inheritance</a></li>
<li><a href="mixins.html">mixins</a></li>
</ul>
</nav>
</header>
<section>
<div class="card-deep">
<header>
<h1>Header 1</h1>
</header>
<article>
<p>TFW when they should took away our tools becuase we abuse the tools.</p>
</article>
</div>
</section>
<footer>
<nav>
<ul>
<li><a href="variables.html">variables</a></li>
<li><a href="nesting.html">nesting</a></li>
<li><a href="inheritance.html">inheritance</a></li>
<li><a href="mixins.html">mixins</a></li>
</ul>
</nav>
</footer>
</body>
</html>