-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (58 loc) · 1.94 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>DUI</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css" />
</head>
<body>
<!-- NAVBAR -->
<nav class="navbar" role="navigation" aria-label="main navigation">
<!-- Navbar Brand -->
<div class="navbar-brand">
<a class="navbar-item" href="https://github.com/enginoobz-projects/dui" target="blank">
<!-- TODO: use logo -->
DUI
</a>
<!-- Navbar Burger -->
<a role="button" class="navbar-burger" aria-label="menu" aria-expanded="false">
<!-- 3 lines -->
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<!-- Navbar Menu -->
<div class="navbar-menu">
<!-- Start -->
<div class="navbar-start">
<a class="navbar-item">Start</a>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link">Components</a>
<div class="navbar-dropdown">
<!-- Other navbar items -->
</div>
</div>
<a class="navbar-item">Templates</a>
<a class="navbar-item">Support</a>
</div>
<!-- End -->
<div class="navbar-end">
<div class="navbar-item">
<input class="input is-rounded" type="text" placeholder="Search for component">
</div>
<a class="navbar-item">Github</a>
</div>
</div>
</nav>
<section class="section">
<div class="container">
<h1 class="title">Dynamic UI Framework</h1>
<p class="subtitle mt-2">Build websites quickly with <strong>reusable components</strong>, transform to various <strong>trendy UI styles</strong>, with the flexibility for <strong>runtime
customization</strong>.</p>
</div>
</section>
<script src="main.js"></script>
</body>
</html>