-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (43 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="dist/styles/pixss.min.css" />
<title>Document</title>
</head>
<body>
<header>
<nav class="topbar">
<div class="container space-between">
<div>logo</div>
<div>navigation</div>
</div>
</nav>
</header>
<main>
<div class="main">
<section class="hero is-primary">
<div class="container">
<div class="row">
<div class="column description">
<h2>PIXSS</h2>
<h3>Small but Good enough</h3>
<p>Lorem ipsum dolor, sit amet consectetur adipisicing elit.</p>
</div>
<div class="column">
<img src="./dist/static/rocket.svg" alt="" />
</div>
</div>
</div>
</section>
<section class="container py-2">
<code>foobar code</code>
</section>
</div>
</main>
<footer>
<div class="centered-xy">made in berlin</div>
</footer>
</body>
</html>