HTML - Html To Plain Text Conversion Help (copying On The Fly)
I am having problems with a usage of copying HTML at school. What happens is I want to copy paste my grades for my family to see but when it comes out in the HTML table. It looks like gobble dee goop for my uncle at his work e-mail.
Like I copy a table that fits on a normal printed out page. I ctrl V it to my outlook and send it to him. It appears all stretched out and stuff in his e-mail. He says he uses lotus notes to check to his e-mail. Is there any way I could get a converter to convert CTRL V html from a website to straight text on the fly? instead of converting an html file ? My thing is too long for me to type out myself and a converter would be a neat thing I could play around with. Similar TutorialsHi everyone, I've been searching around the web trying to find out how I can send using Outlook a html and text email newsletter automatically. I am quite happy creating html only newsletters, and text ones for that matter, but I have been digging and believe that by using multi-part code I can send to both and the recipients email client "allows" whichever version to be displayed - does this sound right? I'm hoping to simply create the html with the relevent mime references and boundaries (dont know what they are but have seen them on enough Google'd pages to know that they mean something!) and then copy and paste into Outlook - the newsletter is only going out to a few people at a time. Any suggestions or advice would be very greatly appreciated. Regards Allan I'm creating a website. I would like the end user to be able to easily update all the text parts without having to know any HTML. How should I go about doing this? The way I've set it up at the moment is to use an include file with ASP so the text is kept seperate. The problem with this is that the end user still has to enter the text with some HTML formatting (I have written a program with VBA in MS Word to convert text to HTML but I'm not sure that's the best way). Any ideas on how I could make this better? Or if a completely different way would be better how should I go about doing it? Hi everyone, I'm new here and have a new website for my little craft business - I have designed it totally from scratch writing the HTML by hand (in Notepad!), using what I learned from some Google searches: http://kristenhill.sasktelwebsite.net Even though I have keywords listed in my home page (<Meta name="Keywords" content="...), Google will not pick up any of my content when I search for any of it! Someone suggested that it might be because I am using Frames and that I should switch to plain HTML combined with CSS. I have no idea how to do that as I am new to HTML (and don't know if that suggestion is even correct), and am wondering if anyone can help me! I would be happy to send you my code and would really appreciate any help, even if it's a sample of how I would translate it from its current state with Frames, to a new improved version using HTML & CSS. Thanks in advance! Kristen Hello everybody. I am new around here and also newbie when it comes to HTML hence the reasson why I am here. I am using PageBreeze to create some eBay templates. I then copy the html code and past it onto eBay when listing a product. The problem is that, in the PageBreeze everything is fine and well formatted. When I past the code into eBay, the whole formatting is shot to bits, with massive gaps between words and paragraphs. Any comments on this are well and truly appreciated. Kind regards, Albert, C Hi I need to convert html page into xml format . Is it possible without using any external tools like tidy etc. pls send ur suggestions. thanx. Is there any software that converts psd to html code instead of slicing manually in photoshop and developing html using dreamweaver ?? 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!!! Hi! Is it possible to make a self-updating HTML version of this java table? I need it for my Excel project, cause it cannot open java based tables. Thanks. Hi All, I am currently facing a problem with html to mht file conversion. My html file is present in a folder with folder structure like "E:\UsersReport". Inside this folder there is another folder named "Image". This folder contains JPEG images. The html file contains href relative links to the images in this "Image" folder. The relative links are given as href = ".\Image\A.jpg". In the converted html files, the relative links is not working. For accesing the images we need to give the full image path in mht files. Is there any method to give relative links in mht files??? Please help. Hi, i am sure you's are all familiar with photobucket, well i was wonderig if anyone knows the code to automatically highlight and copy to the clipboard information in a box when it is just simply clicked like it does with the ht code, image url, etc next to your picture on photobucket. thanks, karl firstly hello to everyone - sorry for not introducing myself prior to posting but im in DESPERATE need of help and hope someone will take pity on me and put me out my misery!!! I am trying to include an order form in a website i am building.. i would like it to have the ability to 'copy' information from 'customers details' to 'delivery details' if these are one and the same - i have tried various things all to no avail... here is what i have so far.... -------------------------------------------------------------------------------------------------------- <HTML> <head> <title></title> <script type="text/javascript"> function data_copy() { if(document.form1.copy[0].checked){ document.form1."Delivery Name".value=document.form1."Customer Name".value; document.form1."Delivery Address 1".value=document.form1."Customer Address 1".value; document.form1."Delivery Address 2".value=document.form1."Customer Address 2".value; document.form1."Delivery Town".value=document.form1."Customer Town".value; document.form1."Delivery County".value=document.form1."Customer County".value; document.form1."Delivery Post Code".value=document.form1."Customer Post Code".value; }else{ document.form1."Delivery Name".value=""; document.form1."Delivery Address 1".value=""; document.form1."Delivery Address 2".value=""; document.form1."Delivery Town".value=""; document.form1."Delivery County".value=""; document.form1."Delivery Post Code".value=""; } } </script> </head> <form name=form1 action=""> <TABLE width="800" border="0" align="center" cellpadding="5" cellspacing="0"> <tr bgcolor="#FFFFFF"> <td width="300" align="left"><font size="2" face="Verdana"><b>Customer Details:</b></font></td> <td width="200"></td> <td width="200"></td> <td width="300" align="left"><font size="2" face="Verdana"><b>Delivery Details:</b></font></td> <td width="200"></td> </tr> <tr> <td></td> <td></td> <td></td> <td><input type=radio name=copy value='yes' onclick="data_copy()";><font face="Verdana" size="2">Same As Customer</font></td> <td><input type=radio name=copy value='no' onclick="data_copy()";><font face="Verdana" size="2">Not Same</font></td> </tr> <tr bgcolor="#FFFFFF"> <td width="300" align="left"><font size="2" face="Verdana">Name:</font></td> <td width="200" align="left"><input name="Customer Name" type="text" size="30"></td> <td width="200"></td> <td width="300" align="left"><font size="2" face="Verdana">Name:</font></td> <td width="200" align="left"><input name="Delivery Name" type="text" size="30"></td> </tr> <tr bgcolor="#FFFFFF"> <td width="300" align="left"><font size="2" face="Verdana">Address 1:</font></td> <td width="200" align="left"><input name="Customer Address 1" type="text" size="30"></td> <td width="200"></td> <td width="300" align="left"><font size="2" face="Verdana">Address 1:</font></td> <td width="200" align="left"><input name="Delivery Address 1" type="text" size="30"></td> </tr> <tr bgcolor="#FFFFFF"> <td width="300" align="left"><font size="2" face="Verdana">Address 2:</font></td> <td width="200" align="left"><input name="Customer Address 2" type="text" size="30"></td> <td width="200"></td> <td width="300" align="left"><font size="2" face="Verdana">Address 2:</font></td> <td width="200" align="left"><input name="Delivery Address 2" type="text" size="30"></td> </tr> <tr bgcolor="#FFFFFF"> <td width="300" align="left"><font size="2" face="Verdana">Town:</font></td> <td width="200" align="left"><input name="Customer Town" type="text" size="30"></td> <td width="200"></td> <td width="300" align="left"><font size="2" face="Verdana">Town:</font></td> <td width="200" align="left"><input name="Delivery Town" type="text" size="30"></td> </tr> <tr bgcolor="#FFFFFF"> <td width="300" align="left"><font size="2" face="Verdana">County:</font></td> <td width="200" align="left"><input name="Customer County" type="text" size="30"></td> <td width="200"></td> <td width="300" align="left"><font size="2" face="Verdana">County:</font></td> <td width="200" align="left"><input name="Delivery County" type="text" size="30"></td> </tr> <tr bgcolor="#FFFFFF"> <td width="300" align="left"><font size="2" face="Verdana">Post Code:</font></td> <td width="200" align="left"><input name="Customer Post Code" type="text" size="15"></td> <td width="200"></td> <td width="300" align="left"><font size="2" face="Verdana">Post Code:</font></td> <td width="200" align="left"><input name="Delivery Post Code" type="text" size="15"></td> </tr> </table><br> <br><input type="Submit"> </form> </body> -------------------------------------------------------------------------------------------------------- although it looks ok when i preview it for some reason it will not copy the information i want... if anyone can help (and ideally explain what i am doing wrong) i would be very very thankful! kind regards lawrence (larryg) Hey everyone, I have an embedded Windows Media Player 11 on my site and I have it set to buffer before playing the videos. So I have two questions: 1. How can I make the buffering percentage visible in WMP 2. Is it possible to take the buffering percentage and have a custom progress bar go through HTML or javascript or something? 3. If #2 isn't possible, could I put a message up that disappears once the movie autostarts? Thanks! I have several websites that I maintain and update. A lot of them are just textual changes and I would think my customers can do these themselves by editing a simple .txt file. I was hoping my choices are avalable so that I can just insert this tag into my web pages and then give them login info to their edit page or show them how to upload the .txt file. I hope this is an easy one with several answers. Is it possible these tags could discipline your rankings in the search engines? Thanks, Jason i have a lot of text files(2-400) all have quite alot of text inside them so is there some software that can help me convert it all into html pages?? somthing that i am doing right now is: copied all of my text files pasted them into other location and editing each file and giving extention html/htm. now can u tell somthing better?? all the files will open in same frame(obviously one at a time), all have styling n everything same. i just started working on addicted2ally.com, and for some reason, my index.html is showing the text of the html instead of well, doing it lol helppp!? Hi everybody, I've invented a means of converting HTML to keywords. http://4nf.org/tool/ What do you think of it? Any kind of feedback is greatly appreciated! Thanks in advance and kind regards Hello all, I don't know if this is the correct forums but here goes. I have an english site that needs to be viewed in Farsi language. I don't know where to start but my boss seems to think we can just place a script in the header to translate all the content, but I cannot find that script. Is there a script for this? What is the best way in going about this. Thanks again for your help. Last time I posted I was told I needed to get rid of the tables from my code. Im still trying to learn CSS properly and make the changes as I go. looking at my layout surrenderyourwings.com/layout.html I realize it should be 3 divs from left to right, one for the images one for the content and one for the details my question is: the details column on the right "payment shipping etc" Should each of the individual "cells" be a nested div? or is there a different or more correct way to convert and simplify this? thanks Hello Everyone, I have just started learning html and I am facing a problem. I have wrote the following code in notepad: Code: <h3> HTML Images - The <img> Tag and the Src Attribute </h3> <p> The <img> tag is empty, which means that it contains attributes only, and has no closing tag.<b/><br/> When I open this html file in browser, text "<img>" does not display correctly. Please help me asap. Thanks! HTML to look at text or xml file - is there a way of creating a HTML tag or Div to look at another text file that can be easily edited as the source to the content. Basically a paragraph that can be easily edited by someone who doesn't understand html that affects paragraphs in divs on a web page. - could someone point me in the right direction - I can't seem to get my head around what I need being only a tuesday and not getting stuck into the week. Thanks in advance... |