UNPKG

basic-ui-js

Version:

A lightweight JavaScript library for building web-based applications with simple code. No need to write HTML or CSS — just use basic JavaScript.

62 lines (42 loc) 1.58 kB
<!DOCTYPE html> <html lang="en"> <head> <title>New Project Name</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"><!-- user-scalable=no --> <!-- LIBRARY FILES --> <!-- <link rel="preload" href="image.png" as="image"> --> <link rel="preload" href="basic/font/open-sans/OpenSans-Regular.ttf" as="font" crossorigin="anonymous"> <link rel="stylesheet" type="text/css" href="basic/basic.min.css"> <script src="basic/basic.min.js" type="text/javascript" charset="utf-8"></script> <!--<script src="basic/scroll-bar.min.js" type="text/javascript" charset="utf-8"></script>--> <style> /* body { margin: 0px !important; overflow: hidden !important; } */ </style> <script> // VARIABLES let myString = ""; let myInteger = 0; let myFloat = 0.5; // First running function. window.onload = function() { } // Function running every second. const loop = function() { } // OTHER FUNCTIONS const doSomthing1 = function() { }; const doSomething2 = function() { }; </script> </head> <body> <!-- HTML content --> </body> </html>