-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 841 Bytes
/
index.html
File metadata and controls
22 lines (22 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CUGI Demo</title>
<link rel="stylesheet" href="dist/CUGI-Default.css">
</head>
<body>
<h1>This is CUGI</h1>
<h2>A small configuration menu library.</h2>
<h4>Made for your browser and various webview apps</h4>
<h6>Ain't it cool?</h6>
<p>You can find the library on <a href="https://github.com/Coffee-Engine/CUGI/tree/main/dist">github</a></p>
<script src="dist/CUGI.js"></script>
<script src="site/demo.js"></script>
<cugi-dropdown>Hello
<cugi-option>{ type: "button", text: "hello world!" }</cugi-option>
<cugi-option>{ type: "float", text: "hello world!", target: window, key: "hi" }</cugi-option>
</cugi-dropdown>
</body>
</html>