B. Getting Started
2. Using Genes.UI
Installing the UI Framework:
<script src="https://cdn.genes.one/genes.js"></script>
<link rel="stylesheet" href="https://cdn.genes.one/genes.css">
There is no installing a css and a js file. You shouldn't!
Why did we come to this??
You shouldn't need to compile thing to show button, or require hundreds of files all over the place.
You can just include the css and the js.
There is no setup, download, build, or anything else.
After you include the css and the js anyhwere in your HTML file, you just start using it.
There is no setup, download, build, or anything else.
Below you can see a sample HTML file:
(all the starter templates are listed when you login as a member)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Genes UI :: Sample HTML</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<base href="./">
<script src="https://cdn.genes.one/genes.js"></script>
<link rel="stylesheet" href="https://cdn.genes.one/genes.css">
</head>
<body>
<div id="root" class="fh fw"></div>
</body>
</html>