html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Get Form Values Example</title>
</head>
<body>
    <form id="myForm">
        <!-- Your form elements go here -->
        <input type="text" name="name" id="name" placeholder="Your Name">
        <input type="email" name="email" id="email" placeholder="Your Email">
        <button type="submit">Submit</button>
    </form>
    
    <script src="your-script.js"></script>
</body>
</html>