Seoul.html – 서울 25개 구, Firefox search tabs automation

<!DOCTYPE html>
<html>
<head>
    <title>Open Search Words in Reverse Order</title>
</head>
<body>
    <script>
        var searchWords = [
            "한의원 중랑구 서울특별시",
            "한의원 중구 서울특별시",
            "한의원 종로구 서울특별시",
            "한의원 은평구 서울특별시",
            "한의원 용산구 서울특별시",
            "한의원 영등포구 서울특별시",
            "한의원 양천구 서울특별시",
            "한의원 송파구 서울특별시",
            "한의원 성북구 서울특별시",
            "한의원 성동구 서울특별시",
            "한의원 서초구 서울특별시",
            "한의원 서대문구 서울특별시",
            "한의원 마포구 서울특별시",
            "한의원 동작구 서울특별시",
            "한의원 동대문구 서울특별시",
            "한의원 도봉구 서울특별시",
            "한의원 노원구 서울특별시",
            "한의원 금천구 서울특별시",
            "한의원 구로구 서울특별시",
            "한의원 광진구 서울특별시",
            "한의원 관악구 서울특별시",
            "한의원 강서구 서울특별시",
            "한의원 강북구 서울특별시",
            "한의원 강동구 서울특별시",
            "한의원 강남구 서울특별시"
        ];

        for (var i = 0; i < Math.min(25, searchWords.length); i++) {
            window.open("https://www.google.com/search?q=" + encodeURIComponent(searchWords[i]), "_blank");
        }
    </script>
</body>
</html>

Skype Call

<!DOCTYPE html>
<html>
<head>
    <title>Call Option Prompt</title>
</head>
<body>
    <h1>Welcome to Our Website</h1>
    <p>Choose how you want to make a call:</p>

    <!-- Skype Button -->
    <button id="skypeButton">Use Skype</button>

    <!-- Regular Phone Button -->
    <button id="phoneButton">Use Regular Phone</button>

    <script>
        // Function to handle Skype call
        function makeSkypeCall() {
            // Use Skype URI scheme to initiate a Skype call
            window.location.href = 'skype:username?call';
        }

        // Function to handle regular phone call
        function makePhoneCall() {
            // Replace 'phone_number' with the actual phone number
            window.location.href = 'tel:+1234567890';
        }

        // Add event listeners to the buttons
        document.getElementById('skypeButton').addEventListener('click', makeSkypeCall);
        document.getElementById('phoneButton').addEventListener('click', makePhoneCall);
    </script>
</body>
</html>