About 14,500,000 results
Open links in new tab
  1. How to copy string to clipboard as text/html? - Stack Overflow

    Is there a way in javascript to copy an html string (ie <b>xx<b>) into the clipboard as text/html, so that it can then be pasted into for example a gmail message with the formatting (ie...

  2. HTML Text with tags to formatted text in an Excel cell

    Apr 4, 2012 · Is there a way to take HTML and import it to excel so that it is formatted as rich text (preferably by using VBA)? Basically, when I paste to an Excel cell, I'm looking to turn this: …

  3. css - How can I put "< >" as a text in HTML? - Stack Overflow

    Apr 17, 2018 · They are called HTML Entity's: An HTML entity is a piece of text ("string") that begins with an ampersand (&) and ends with a semicolon (;) . Entities are frequently used to display reserved …

  4. Extracting text from HTML file using Python - Stack Overflow

    Nov 30, 2008 · 346 I'd like to extract the text from an HTML file using Python. I want essentially the same output I would get if I copied the text from a browser and pasted it into notepad. I'd like …

  5. Centering text in HTML - Stack Overflow

    May 8, 2009 · Text can only be centered in the box element it resides in so text that you want centered has to be in a <p> or <div> or <td>, etc. You can't center text in a for instance.

  6. How do you convert Html to plain text? - Stack Overflow

    Explore methods to convert HTML to plain text in C programming language on Stack Overflow.

  7. html - How do I set a background-color for the width of text, not the ...

    Dec 16, 2019 · What I want is for the green background to be just behind the text, not to be 100% of the page width. Here is my current code: h1 { text-align: center; background-color: green; } &l...

  8. css - How to create uppercase in pure HTML - Stack Overflow

    Apr 20, 2018 · Learn how to make text uppercase in pure HTML using simple techniques and examples discussed in this Stack Overflow thread.

  9. Converting html to text with Python - Stack Overflow

    This means that solution keep text inside <style> and <script>. So I would rather implement a simple solution based on regular expressions and use standard Python 3.4 library for unescape HTML entities:

  10. css - How do I make text bold in HTML? - Stack Overflow

    Dec 6, 2016 · Want to heavily stress some text, perhaps for a warning (" Beware the dog! ")? Use a "strong" element and suggest a bold style for it within your CSS (e.g. "strong {font-weight: bold;}"). …