Docs Viewer

Upload, preview, download, and write quick documents without Word.

+ New Document
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>My Ebook</title> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style type="text/css"> /* Responsive styles for different screen sizes */ @media (min-width: 600px) { /* Styles for screens larger than 600px */ } </style> <script type="text/javascript"> /* Interactive scripts for buttons, links, etc. */ function showPopup() { /* Code to show a popup */ } </script> </head> <body> <h1>My Ebook</h1> <p>This is the first chapter of my ebook. The text of the ebook is abc's</p> <button onclick="showPopup()">Show Popup</button> </body> </html> .....epub /* CSS file for styling */ body { font-family: Arial, sans-serif; } h1 { text-align: center; } /* Additional styles for screens larger than 600px */ @media (min-width: 600px) { /* Styles for screens larger than 600px */ } /* JavaScript file for interactive scripts */ function showPopup() { /* Code to show a popup */ } emobi file format ................................. <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html> <html> <head> <title>My Ebook</title> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> /* Responsive styles for different screen sizes */ @media (min-width: 600px) { /* Styles for screens larger than 600px */ } </style> <script> /* Interactive scripts for buttons, links, etc. */ function showPopup() { /* Code to show a popup */ } </script> </head> <body> <h1>My Ebook</h1> <p>This is the first chapter of my ebook. The text of the ebook is abc's</p> <button onclick="showPopup()">Show Popup</button> </body> </html> resp..pdf..... <!DOCTYPE html> <html> <head> <title>My Ebook</title> </head> <body> <h1>My Ebook</h1> <p>This is the first chapter of my ebook. The text of the ebook is abc's</p> <a href="#popup1">Show Popup</a> <div id="popup1" style="display:none"> <p>This is a popup</p> <a href="#" onclick="document.getElementById('popup1').style.display='none'">Close</a> </div> </body> </html>