<div class="header">
        <h1>Burç Hesaplama Programı</h1>
    </div>

    <div class="kutu-1">
        <select name="slctgun" id="slctgun">
            <script>
                for (let gun = 1; gun <= 31; gun++) {
                    document.write("<option value='" + gun + "'>" + gun + "</option>");
                }
            </script>
        </select>
        <select name="slctay" id="slctay">
            <script>
                for (let ay = 1; ay <= 12; ay++) {
                    document.write("<option value='" + ay + "'>" + ay + "</option>");
                }
            </script>
        </select>
        <select name="slctyil" id="slctyil">
            <script>
                for (let yil = 1950; yil <= 2024; yil++) {
                    document.write("<option value='" + yil + "'>" + yil + "</option>");
                }
            </script>
        </select>
    </div>

    <div class="button-container">
        <button id="button" onclick="burchesapla()">Burç Hesapla</button>
        <button id="clearButton" onclick="clearResult()">Sonucu Sil</button>
    </div>

    <div class="kutu-2" id="kutu-2"></div>
        
     




Burç Hesaplama Programı