-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 941 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Taphandle Examples</title>
<script src="../lib/index-web.js"></script>
<!-- The following are Bulma CSS files. You do not need to include them in your HTML files. -->
<link rel="stylesheet" href="../node_modules/bulma/css/bulma.min.css">
<link rel="stylesheet" href="../node_modules/bulmaswatch/materia/bulmaswatch.min.css">
<link rel="stylesheet" href="../node_modules/font-awesome/css/font-awesome.min.css">
<style>
body {
margin: 1em;
}
</style>
</head>
<body>
<h1 class="title is-1">Examples</h1>
<ul>
<li><a href="fullname.html">Full Name Inputs</a></li>
<li><a href="generic-text.html">Generic Text Inputs</a></li>
<li><a href="password.html">Password Inputs</a></li>
<li><a href="username.html">Username Inputs</a></li>
</body>
</html>