Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.06 KB

README.md

File metadata and controls

29 lines (21 loc) · 1.06 KB

tutorial.js

A vanilla JS library to help you create interactive and flexible tutorials for your website.

Getting Started

Steps to follow: Add CSS link tag to "tutorialjsStyles.css." Before or after ur own CSS files depending on your needs. Adding it after may override your own styles. Add script tag to "tutorial.js" before your own script. You should end up with something like this:

        <head>
            <link rel="stylesheet" type="text/css" href="styles/myStyles.css" />
            <link rel="stylesheet" type="text/css" href="styles/tutorialjsStyles.css" />
        </head>
        <html>
            <body>
            
                <script type="module" src="./scripts/tutorial/tutorial.js"></script>
                <script type="module" src="./scripts/myScript.js" ></script>
            </body>
        </html>

Now you can use the Tutorial object in your code!

URLs

Landing Page: https://saqib-ali.com/tutorial.js/

Documentation: https://saqib-ali.com/tutorial.js/documentation.html