HTML - How To Convert Large Html Files To Another Format?
This is perhaps not the most suitable for this question, but I have been given two html files that are saved 'reports' produced from a company system. Before anyone suggests it, they cannot be re-produced for me in a different form.
The files are 75Mb each!! Very large html files. I have been asked if I can convert the rendered html view of the files (so not the html source code) to another form, for example RTF or PDF, or any form that is suitable. Other than www.htmltortf.com and opening the files in Office and exporting them, can anyone suggest any way to do this (Office cannot handle the file size, and HTMLtoRTF requires payment for the full version). Thanks Ted Similar TutorialsHi all, I'm trying to set up a website for a campus journal that features longish essays as its primary content. I'm struggling to find a way to format large checks of text without too much work. I essentially want to be able to copy and paste 6-10 page essays from word and have them keep the formatting. Is this possible? Do you have any other suggestions for working with text? I consider myself more of an artist and less of a coder so your help is much appreciated. Thanks, Nick I want 50 text fields for a form on a webpage. Is there a way to do this using a loop instead of manually writting the html code for all 50. I have tried this but it does not work. Code: <script type="text/javascript"> var i; for(i=0;i<50;i++) { document.write("<tr>"); document.write("<td>~address(i)~ </td>"); document.write("<td>~name(i)~</td>"); document.write("<td><input type="text" name="name[i]" maxlength="16" value="~name(i)~" size="20"></td>"); document.write("</tr>"); } </script> Thanks Hi I have a small PHP page, where I would like som VERY large text but I cant seem to get it above 7 Code: echo "<p><font size=7 color=red> $row[0] </font></p>" ; I would like it VERY big - like 40 Can anyone tell how to achive this? Thanks Lhg As the title states I've been using Microsoft Word 2000 to create my web page but now want to make a simple no frills html HTML document. Is there a simple and quick way to do it ? I know I can simply create a new HTML document and then just copy and paste the links but is there a utility that can do this ? Many thanks I have a large table of data from a travel based web site. I'd like to add some sort of user-friendly mechanism for sorting the table by some of the columns, I've tried some javascript approaches I've found on the internet, but haven't had much luck implementing it in a way I'd like. Such as found at this site: http://mguglielmi.free.fr/scripts/TableFilter/?l=en Current layout of table: [img=http://img210.imageshack.us/img210/3937/tablers7.th.png] I'd like to be able to sort by month, destination (e.g. a "Fiji" option which pulls up all listings containing the word "Fiji") Anyone have any suggestions which might help or be suitable? Thanks How do you convert a doc file into HTML using aspnet? I have a word document that I need to add to web template so I need it in html so I can just copy and paste the info. I have tried saving the page as webpage in MS Word2007 but this saves it as an MHTML doc and I cannot just copy and paste that to my template. Is there anything I can use to convert the doc into html and keep the formatting in the doc? How can I convert the attached image to HTML so the background runs the width of the page? How to convert an image(.jpg,.bmp,.gif) into html tag? (Instead of giving the image path name in the tag <img src=../abc.jpg> html codes needs to be used so that without image in local folder the html file should display the image) Hi, I created some pages using DW8. When i review the pages, IE shows them perfect without any formatting issues whereas when i see the pages in Firefox, it destroys the formatting. The tables and the forms would get big or small. How can i fix this? Thanks, in the development of a website i've been given about 50 Word files as my client would have them designed as a webpage - i've NEVER had success doing a simple conversion - is there any good way to convert these .doc files to html without total destruction of the layout? anyone? many thanks, Glenn Hi All, I've been working on a portfolio website for a little while now, which is currently built as a hybrid html and flash. I was hoping to code the whole thing in html, but was having some problems with the horizontal scrolling portion of the site. You can see how it looks he jcolt.com There are 2 main things that are holding me back from this being entirely html: I'd like to change the appearance of the scroll bar, so it looks like what i've done in the current flash version. I'm also trying to map the scroll wheel on the mouse to scroll horizontally, across the gallery. Currently it works like this in the flash version, but again, trying to do it in html. I've seen it done successfully on this site: http://www.ptarmak.com/ My question is mainly; how complicated would this be to do? I have a working knowledge of html, but most of this site has been trial and error. Secondly, could anyone point me in the direction of code, or a discussion of how to do this? Thanks in advance. Is there such a thing as an improper html file? I cant upload my new, and first site. I connect to the server and get 3 files, 2 folders and one .asp file. the folders a Stats and _dp_backup. the last file is gdform.asp when i add my html file, my site does not change. NOTE: i wrote the html in notepad and saved it as mysite.html i think its not working because the file is not a proper html? maybe.. but when i open it, it shows what i've made in a web browser. HELP! Im really confused, as this is my first site. why can't i upload anything! www.unboundstudios.net check out my link, you can see what happend to the page. ______________________________________________________ PS before i uploaded my first html file, i deleted 2 IE files (internet explorer files), basicly html files that actually showed a type of site that says SITE COMING SOON, which was there as soon as i hosted my domain. once i deleted those 2, this is what came up: www.unboundstudios.net why? can i fix it? do i need those 2 files? i think they were html but can i add my own.. and how? OK, this is a dumb question, but I really cannot think of a reason. My grandson is taking a web course and the teacher told him something about certain html END TAGS needing to be on a new line or separate line of source code. Can anyone tell me when or why an end tag would require it's own source code line? Thanks, Bert Is it possible to convert a webpage (written in HTML) into a format that will eanble it to be shown on an ordinary television set via a DVD player? Just a thought and more than a bit of wishful thinking!!! How do sites like MLB.com make it so they have their background and on top of that they have a window that shows their actual site. I want to do this to my site but like I said I am relatively new to HTML Hi, i'm a new to programming. I try to convert this script which me and my friend create in Eclipse to work in HTML webpage. Till now, still no success. Any web-dev can help me? PHP Code: import javax.swing.*; import java.text.*; public class InputItem { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub String [] namaBarang=new String[5]; String [] kodBar=new String[5]; double [] hargaBarang=new double[5]; DecimalFormat df= new DecimalFormat("#.##"); namaBarang [0] = "Sunsilk"; namaBarang [1] = "Dove"; namaBarang [2] = "Gardenia"; namaBarang [3] = "Ferero Rocher"; namaBarang [4] = "Wall's ice cream"; kodBar [0] = "123"; kodBar [1] = "456"; kodBar [2] = "789"; kodBar [3] = "014"; kodBar [4] = "852"; hargaBarang [0] =9.85 ; hargaBarang [1] =5.95 ; hargaBarang [2] =2.35 ; hargaBarang [3] =5.35 ; hargaBarang [4] =1.25 ; int option = 0; String output=""; double total=0.0; output+= "----------------------------\n\tMy Mydin\n----------------------------\n\n"; while (option==JOptionPane.YES_NO_OPTION) { String codeStr=JOptionPane.showInputDialog(null,"Enter the barcode :"); String qtyStr=JOptionPane.showInputDialog(null,"Enter the quantity :"); int qty = Integer.parseInt(qtyStr); System.out.println("\n\n"); for( int i=0; i<kodBar.length;i++) { if(codeStr.equalsIgnoreCase(kodBar[i])) { output+="\n"+ namaBarang [i]+"----------RM"+df.format((hargaBarang[i]*qty)); total+=(hargaBarang[i]*qty); } } option=JOptionPane.showConfirmDialog(null, "Continue?"); } output+="\n\n============RM"+df.format(total); JOptionPane.showMessageDialog(null, output); } } Any help greatly appreciated. All, I am trying to create a tool bar like we have in gmail compose or similar mails in HTML. Can we achive this on a TEXTAREA on html? what are the work arounds. Can you give me some suggestions. thanks Purushoth For some wierd reason when I put in a table in my html and I format it so that the table tag is to the left, the tr tag is one indent to the right of the table tag and the td tag is one indent to the right of the tr tag and then I close all of them - when I put the closing TD tag on its own line it causes an extra space on the webpage itself. I am lost on this one. It is happening all over my html page!! Any help would be appreciated. Thanks, George Greetings! I'm trying to put sheet music into my webpage. However, whenever I add the notes via notepad, the outcome always looks like a complete mess. Example: Take a look at the sheet music on this page: http://www.ultimate-guitar.com/tabs/..._album_tab.htm How can I copy and paste this and keep an organized format when plugging it into my my website. ty |