Setting up the Document
When you create a widget, your first step is to set up the HTML document.
Here's the basic set up:
<!doctype html> <html> <head> <meta charset="UTF-8"> <title>Widget Title Here</title> </head> <body> </body> <html>
Simply place this is the text editor and you should be good to get started.
Setting up an HTML document with a library is simply knowing where to put each component.