We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9392dcc commit f84ce0eCopy full SHA for f84ce0e
README.md
@@ -23,8 +23,19 @@
23
npm install functionality.js
24
```
25
- Or You Can Install it By CDN In Your HTML File
26
+
27
```html
- <script src="https://cdn.jsdelivr.net/npm/functionality.js@latest/dist/functionality.min.js"></script>
28
+ <body>
29
+ <h1></h1>
30
+ <p></p>
31
+ <script src="https://cdn.jsdelivr.net/npm/functionality.js@latest/dist/functionality.min.js"></script>
32
+ <script>
33
+ heading = document.querySelector("h1");
34
+ number = document.querySelector("p");
35
+ heading.innerText = functionality.capitalize("hello");
36
+ number.innerText = functionality.randomNumber(1, 100);
37
+ </script>
38
+ </body>
39
40
41
## Importing 🦐
0 commit comments