| <!DOCTYPE html> |
| <html lang="tr"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Dua Sayfası</title> |
| <style> |
| body { |
| font-family: 'Arial', sans-serif; |
| background-color: #f9f6f1; |
| color: #333; |
| padding: 20px; |
| text-align: center; |
| } |
| .frame { |
| border: 10px solid goldenrod; |
| padding: 30px; |
| background-color: #fff; |
| max-width: 800px; |
| margin: auto; |
| box-shadow: 0 0 15px rgba(0,0,0,0.2); |
| } |
| .section { |
| margin-bottom: 40px; |
| } |
| .arabic { |
| font-size: 24px; |
| line-height: 2; |
| direction: rtl; |
| margin-bottom: 15px; |
| } |
| .translation { |
| font-size: 18px; |
| line-height: 1.6; |
| text-align: left; |
| direction: ltr; |
| } |
| h1 { |
| font-size: 28px; |
| margin-bottom: 20px; |
| color: darkgoldenrod; |
| } |
| .copy-button { |
| margin-top: 15px; |
| padding: 8px 16px; |
| font-size: 14px; |
| background-color: goldenrod; |
| color: white; |
| border: none; |
| border-radius: 5px; |
| cursor: pointer; |
| } |
| .copy-button:hover { |
| background-color: darkgoldenrod; |
| } |
| </style> |
| </head> |
| <body> |
|
|
| <div class="frame"> |
| <h1>Dua</h1> |
|
|
| <div class="section"> |
| <div class="arabic" id="dua1">اللَّهُمَّ إِنِّي أَعُوذُ بِكَ مِنْ ذُنُوبٍ تَرُدُّ الدُّعَاءَ</div> |
| <div class="translation">Allah'ım! Sana, duanın kabulünü engelleyen günahlardan sığınırım.</div> |
| <button class="copy-button" onclick="copySingleDua('dua1')">Kopyala</button> |
| </div> |
|
|
| <div class="section"> |
| <div class="arabic" id="dua2">اللَّهُمَّ إِنِّي أَعُوذُ بِكَ مِنْ ذُنُوبٍ تَمْنَعُ التَّوْفِيقَ</div> |
| <div class="translation">Allah'ım! Sana, başarıyı engelleyen günahlardan sığınırım.</div> |
| <button class="copy-button" onclick="copySingleDua('dua2')">Kopyala</button> |
| </div> |
|
|
| <div class="section"> |
| <div class="arabic" id="dua3">اللَّهُمَّ إِنِّي أَعُوذُ بِكَ مِنْ ذُنُوبٍ تَمْنَعُ الرِّزْقَ</div> |
| <div class="translation">Allah'ım! Sana, rızkı engelleyen günahlardan sığınırım.</div> |
| <button class="copy-button" onclick="copySingleDua('dua3')">Kopyala</button> |
| </div> |
|
|
| <div class="section"> |
| <div class="arabic" id="dua4">اللَّهُمَّ إِنِّي أَعُوذُ بِكَ مِنْ ذُنُوبٍ تَمْنَعُ السَّعَادَةَ</div> |
| <div class="translation">Allah'ım! Sana, saadeti engelleyen günahlardan sığınırım.</div> |
| <button class="copy-button" onclick="copySingleDua('dua4')">Kopyala</button> |
| </div> |
|
|
| <div class="section"> |
| <div class="arabic" id="dua5">اللَّهُمَّ إِنِّي أَعُوذُ بِكَ مِنْ ذُنُوبٍ تَمْنَعُ الْبَرَكَةَ</div> |
| <div class="translation">Allah'ım! Sana, bereketi engelleyen günahlardan sığınırım.</div> |
| <button class="copy-button" onclick="copySingleDua('dua5')">Kopyala</button> |
| </div> |
|
|
| <div class="section"> |
| <div class="arabic" id="dua6">اللَّهُمَّ إِنِّي أَعُوذُ بِكَ مِنْ ذُنُوبٍ تَمْنَعُ التَّيْسِيرَ</div> |
| <div class="translation">Allah'ım! Sana, işlerin kolaylaşmasını engelleyen günahlardan sığınırım.</div> |
| <button class="copy-button" onclick="copySingleDua('dua6')">Kopyala</button> |
| </div> |
|
|
| </div> |
|
|
| <script> |
| function copySingleDua(id) { |
| const text = document.getElementById(id).innerText; |
| navigator.clipboard.writeText(text).then(() => { |
| alert("Dua kopyalandı!"); |
| }); |
| } |
| </script> |
|
|
| </body> |
| </html> |
|
|