-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbasic-layout.html
More file actions
34 lines (34 loc) · 1.34 KB
/
Copy pathbasic-layout.html
File metadata and controls
34 lines (34 loc) · 1.34 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Basic layout - css-ui</title>
<link href="assets/css/variables.css" media="screen" rel="stylesheet" />
<link href="https://unpkg.com/@lcf.vs/css-ui@3.0.7/css-ui.min.css" media="screen" rel="stylesheet" />
<link href="https://unpkg.com/@lcf.vs/css-ui@3.0.7/components/menu/mini/mini.min.css" media="screen" rel="stylesheet" />
<link href="https://unpkg.com/@lcf.vs/css-ui@3.0.7/components/header/popdown/popdown.min.css" media="screen" rel="stylesheet" />
<link href="assets/css/style.css" media="screen" rel="stylesheet" />
<meta name="viewport" content="width=device-width,initial-scale=1,shrink-to-fit=no" />
</head>
<body>
<header>
<h1>css-ui</h1>
</header>
<main class="home">
<h1>css-ui basic layout</h1>
<section>
<h1>Section title</h1>
<p>Section content</p>
</section>
</main>
<nav>
<!--googleoff: anchor-->
<a href="javascript:" tabindex="1">☰</a>
<a href="javascript:" tabindex="-1">⬅</a>
<!--googleon: anchor-->
<ol>
<li><a class="home" href="/">Home</a></li>
</ol>
</nav>
</body>
</html>