🔽 دانلود ویدئو ▶️ امبد ویدئو × کد امبد <br /> <iframe src="https://example.com/video.mp4" width="640" height="360" frameborder="0" allowfullscreen></iframe><br /> کپی کد .video-buttons { display: flex; gap: 10px; margin: 15px 0; } .video-buttons a, .video-buttons button { padding: 10px 18px; border-radius: 8px; text-decoration: none; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; } .btn-download { background: #28a745; color: white; } .btn-download:hover { background: #218838; } .btn-embed { background: #007bff; color: white; } .btn-embed:hover { background: #0069d9; } .embed-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); } .embed-content { background: white; padding: 20px; width: 400px; max-width: 90%; margin: 10% auto; border-radius: 10px; text-align: center; position: relative; } .embed-content textarea { width: 100%; height: 120px; margin: 10px 0; } .close-btn { position: absolute; right: 15px; top: 10px; cursor: pointer; font-size: 20px; } function showEmbed() { document.getElementById("embedModal").style.display = "block"; } function closeEmbed() { document.getElementById("embedModal").style.display = "none"; } function copyEmbed() { const textarea = document.getElementById("embedCode"); textarea.select(); document.execCommand("copy"); alert("کد کپی شد!"); }