UNPKG

number-word-project-abc123

Version:

The project that will convert numbers to words

30 lines (24 loc) 783 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet/less" type="text/css" href="style.less" /> <script src="https://cdn.jsdelivr.net/npm/less"></script> </head> <body> <div class="number-to-word"> <div> <a href="#" class="decrease"> Decrease</a> <a href="#" class="increase">Increase</a> </div> <input type="number" min="0" max="100000000000000"> <h1></h1> <h2>Number-To-Word</h2> <h3></h3> </div> <script src="app.js" type="module"></script> </body> </html>