-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 890 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 890 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
<html>
<head>
<meta charset="UTF-8" />
<title>Papperlapapp CSS Units</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" />
</head>
<body>
<main class="container-fluid">
<h3>Beispiele für die CSS Length Units Folge</h1>
<aside>
<nav>
<ul>
<li><a href="absolute.html">Absolute</a></li>
<li><a href="percentage.html">Percentage</a></li>
<li><a href="rem.html">em vs. rem</a></li>
<li>
<a href="layoutviewport.html">Layout Viewport</a>
</li>
<li><a href="viewportUnits.html">Viewport Units</a></li>
</ul>
</nav>
</aside>
</main>
</body>
</html>