A vanilla JS library to help you create interactive and flexible tutorials for your website.
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!
Landing Page: https://saqib-ali.com/tutorial.js/
Documentation: https://saqib-ali.com/tutorial.js/documentation.html