CINXE.COM
MP3 Converter - video to music
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" /> <title>MP3 Converter - video to music</title> </head> <style> .fixback { display: block; width: 100%; height: 100%; line-height: 0px; left: 0; top: 0; background-color: rgb(245,245,245); } .nametext{ text-align: center; margin-left: auto; margin-right: auto; font-size: 18px; font-weight: 600; margin-top: 40px; display: block; } .iconimg { display: block; width: 110px; height: 110px; margin-left: auto; margin-right: auto; margin-top: 50px; border-radius: 10px; } .downbtn { width: 280px; height: 50px; background-color: rgb(2,208,130); text-align: center; line-height: 50px; margin-left: auto; margin-right: auto; border: hidden; font-size: 16px; color: white; margin-top: 50px; border-radius: 6px; } .context { display: block; margin-left: auto; margin-right: auto; margin-top: 30px; width: 280px; line-height: 24px; font-size: 15px; font-weight: 600; color: rgba(0,0,0,0.8); } </style> <body style="text-align: center;background-color: rgb(245,245,245);"> <div class="fixback"> <img class="iconimg" src="img/apppic.jpeg" /> <label class="nametext">MP3 Converter - video to music</label> <label class="nametext">extract audio files from mp4</label> <label class="context" style="text-align: left;"> MP3 Converter,An audio and video format conversion tool that supports the conversion of various audio and video file formats. You can extract audio format files from the recorded video files. </label> <div> <div class="context" style="text-align:left;white-space:normal;word-wrap:break-word;"> <p>- Support export video format:MP4, MOV, 3GP, 3G2, ASF, MKV, VOB, MPEG, WMV, FLV, AVI.</p> <p>- Support export audio format:MP3, M4A, OGG, M4R, WAV, FLAC, WMA, AIFF, CAF, ADX, AC3, AAC.</p> <p>- Support to trim video and audio.</p> <p>- The built-in universal player can play media files, movies and music in various formats.</p> </div> </div> <button class="downbtn" onclick="copyTXT()">Download</button> </div> <p><strong>Contact Us</strong></p> <p> contact me at meensa_tech@163.com</p> </body> <script> var copyDOM = document.querySelector('#copy-txt'); copyDOM.innerText = this.location.href; function copyTXT(){ window.location.href="https://itunes.apple.com/app/apple-store/id1547565346"; var range = document.createRange(); // 创建容器 range.selectNode(copyDOM); // 选中需要复制的节点 window.getSelection().addRange(range); // 执行选中元素 var successful = document.execCommand('copy');// 执行 copy 操作 try { var msg = successful ? 'successful' : 'unsuccessful'; console.log('Copy was ' + msg); } catch(err) { console.log('unable to copy'); } window.getSelection().removeAllRanges(); // 移除选中的元素 } </script> </html>