Find Jobs Coding 2024


 


<html lang="en">


<head>

    <meta charset="UTF-8"></meta>

    <meta content="width=device-width, initial-scale=1.0" name="viewport"></meta>

    <title>Find Jobs</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            text-align: center;

            background-color: #f0f0f0;

            padding-top: 50px;

        }


        h1 {

            color: #333;

            font-size: 36px;

            margin-bottom: 30px;

        }


        .country-button {

            display: inline-block;

            padding: 10px 20px;

            background-color: #007bff;

            color: #fff;

            text-decoration: none;

            border-radius: 5px;

            margin: 10px;

            transition: background-color 0.3s ease;

        }


        .country-button:hover {

            background-color: #0056b3;

        }


        .form-container {

            max-width: 600px;

            margin: 0 auto;

            background-color: #fff;

            padding: 20px;

            border-radius: 8px;

            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

        }


        .form-group {

            margin-bottom: 20px;

            text-align: left;

        }


        .form-group label {

            display: block;

            font-weight: bold;

            margin-bottom: 5px;

        }


        .form-group select {

            width: 100%;

            padding: 10px;

            border-radius: 5px;

            border: 1px solid #ccc;

        }


        .submit-btn {

            display: inline-block;

            padding: 10px 20px;

            background-color: #4CAF50;

            color: #fff;

            text-decoration: none;

            border-radius: 5px;

            transition: background-color 0.3s ease;

            cursor: pointer;

        }


        .submit-btn:hover {

            background-color: #45a049;

        }

    </style>

</head>


<body>

    <h1>Find Jobs in Below Countries</h1>

    <div class="form-container">

        <form id="jobForm">

            <div class="form-group">

                <label for="skills">Select your skills:</label>

                <select id="skills" name="skills">

                    <option value="programming">Programming</option>

                    <option value="design">Design</option>

                    <option value="marketing">Marketing</option>

                    <!-- Add more options as needed -->

                </select>

            </div>

            <div class="form-group">

                <label for="country">Select your desired country:</label>

                <select id="country" name="country">

                    <option value="place add">USA</option>

                    <option value="place add">Saudi Arabia</option>

                    <option value="place add">Pakistan</option>

                    <option value="place add">India</option>

                </select>

            </div>

            <button class="submit-btn" type="submit">Search Jobs</button>

        </form>

    </div>


    <script>

        document.getElementById('jobForm').addEventListener('submit', function (e) {

            e.preventDefault();

            var selectedCountry = document.getElementById('country').value;

            window.open(selectedCountry, '_blank');

        });

    </script>

</body>


</html>

```


Post a Comment

Previous Post Next Post