HTML consists of statements that define a Web page's elements, controls and appearance. You can place text anywhere inside the body of an HTML document. Unfortunately, browsers remove extra spacing between words in a text string. This increases the time it takes to format some elements such as the HTML marquee. A marquee displays scrolling text that moves across a Web page. To add spaces to text in a marquee, use JavaScript to replace regular spaces with special characters that the browser will not remove.

  • HTML consists of statements that define a Web page's elements, controls and appearance.
  • To add spaces to text in a marquee, use JavaScript to replace regular spaces with special characters that the browser will not remove.

Open Notepad. Paste this HTML code into an empty document:

Marquee Test

This creates a Marquee that contains no text.

Add the following JavaScript function after the "" tag:</p> <p>function set Marquee() {</p> <pre><code class="language-markup"> var original Text = "Marquee String Text"; var marqueeID = "Marquee1"; var blank Character = "&" + "nbsp;" var new Text = originalText.replace(/ /gi, blank Character); var marquee Object = document.getElementById(marqueeID); marqueeObject.innerHTML = new Text; } </code></pre> <p>This function sets the marquee text. The variable "originalText" holds the text string that you want to appear in the marquee. In this example, that text is "Marquee String Text." Add as many spaces as you like between the words or characters. "MarqueeID" holds the ID of the marquee. The "replace" method replaces the blanks in the text string with the special HTML character stored in "blankCharacter." The last statement adds the modified text to the marquee object.</p> <div class="callout callout--summary"> <div class="copy"> <ul> <li></body> </html> This creates a Marquee that contains no text.<br></li> <li>The variable "originalText" holds the text string that you want to appear in the marquee.</li> </ul> </div> </div> <p>Add this JavaScript code after the previous code:</p> <pre><code class="language-markup"> window.onload = function () { set Marquee(); }; </code></pre> <p>This calls the set Marquee function after the Web page loads.</p> <p>Save the Notepad file with an .html extension. For example, if you want to name the file "Marquee Test," save it as "Marquee Test.html."</p> <p>Open the file in your browser to verify that spaces exist between the words in the marquee's text.</p> <div class="callout callout--tip"> <h4 class="callout__header">TIP</h4> <div class="callout__inner"> <p>Note that the "<marquee>" tag in the body of the HTML has an id of "Marquee1." Name the ID anything you like. It must, however, match the value that you set for MarqueeID in the JavaScript function.</p> </div> </div> </section> <div data-ad-unit-name="adsense-main" class="main-ad no-print"></div> </div> <footer class="article-footer no-print"> <div class="article-footnotes"> <label></label> <input type="radio" name="how-to-add-spaces-in-html-marquee-text" class="tab related" id="how-to-add-spaces-in-html-marquee-text-related" checked /> <label for="how-to-add-spaces-in-html-marquee-text-related"><h4>Related</h4></label> <input type="radio" name="how-to-add-spaces-in-html-marquee-text" class="tab references" id="how-to-add-spaces-in-html-marquee-text-references" /> <label for="how-to-add-spaces-in-html-marquee-text-references"><h4>References</h4></label> <input type="radio" name="how-to-add-spaces-in-html-marquee-text" class="tab author" id="how-to-add-spaces-in-html-marquee-text-author" /> <label for="how-to-add-spaces-in-html-marquee-text-author" class="label author"><h4>Author</h4></label> <div class="content related" id="how-to-add-spaces-in-html-marquee-text-related-content"> <div class="article-card-container"> <div class="article-card"> <h5> <a href="https://www.ehow.co.uk/how_12271072_insert-gif-file-html-notepad.html"> How to insert a GIF file into HTML with Notepad </a> </h5> </div> <div class="article-card"> <h5> <a href="https://www.ehow.co.uk/how_8444651_make-superscript-citation-word.html"> How to Make Superscript in Citation With... </a> </h5> </div> <div class="article-card"> <h5> <a href="https://www.ehow.co.uk/facts_6817347_difference-between-wordpad-microsoft-word.html"> The Difference Between Wordpad & Microsoft... </a> </h5> </div> <div class="article-card"> <h5> <a href="https://www.ehow.co.uk/facts_6928876_rotate-image-onenote.html"> How to rotate an image in onenote </a> </h5> </div> <div class="article-card"> <h5> <a href="https://www.ehow.co.uk/how_12268693_type-belongsto-symbol.html"> How to type the belongs-to symbol </a> </h5> </div> <div class="article-card"> <h5> <a href="https://www.ehow.co.uk/list_7725334_disadvantages-sms-language.html"> The Disadvantages of the SMS Language </a> </h5> </div> <div class="article-card"> <h5> <a href="https://www.ehow.co.uk/how_7579122_convert-lnk-exe.html"> How to Convert LNK to EXE </a> </h5> </div> <div class="article-card"> <h5> <a href="https://www.ehow.co.uk/how_8379607_make-folders-excel-spreadsheet.html"> How to make folders from an excel spreadsheet </a> </h5> </div> <div class="article-card"> <h5> <a href="https://www.ehow.co.uk/how_4798552_sign-letter-someone-else_s-behalf.html"> How to Sign a Document for Someone Else &... </a> </h5> </div> <div class="article-card"> <h5> <a href="https://www.ehow.co.uk/how_12266434_create-quiz-random-questions-using-java.html"> How to create a quiz with random questions... </a> </h5> </div> </div> </div> <div class="content content--footnotes references" id="how-to-add-spaces-in-html-marquee-text-references-content"> <ul> <li> <span>1</span> <a href="http://www.usg.edu/galileo/skills/ollc_glossary.phtml" rel="nofollow"> University System of Georgia: Online Library Learning Center Glossary </a> </li> <li> <span>2</span> <a href="http://www.w3schools.com/html/html_entities.asp" rel="nofollow"> W3Schools: HTML Entities </a> </li> <li> <span>3</span> <a href="https://html.spec.whatwg.org/multipage/obsolete.html" rel="nofollow"> World Wide Web Consortium: 11 Obsolete Features --- HTML5 </a> </li> <li> <span>4</span> <a href="http://books.google.com/books?id=2weL0iAfrEMC&pg=PT230&lpg=PT230&dq=javascript+replace+global+gi++-blog+-blogs+-%22how+can+I%22+-%22how+do+I%22+-%22how+do+you%22+-%22what+is%22+-%22can+anyone%22+-youtube&source=bl&ots=_81AsD--9I&sig=TGPEqsRViSA3kpH7gARY2cQhM74&hl=en&ei=1s2STK-iDoPGlQeUr_CqCg&sa=X&oi=book_result&ct=result&resnum=31&ved=0CL8BEOgBMB4#v=onepage&q=javascript%20replace%20global%20gi%20%20-blog%20-blogs%20-%22how%20can%20I%22%20-%22how%20do%20I%22%20-%22how%20do%20you%22%20-%22what%20is%22%20-%22can%20anyone%22%20-youtube&f=false" rel="nofollow"> "JavaScript: The Definitive Guide"; David Flanagan; 2006 </a> </li> </ul> </div> <div class="content content--footnotes author" id="how-to-add-spaces-in-html-marquee-text-author-content"> <li>After majoring in physics, Kevin Lee began writing professionally in 1989 when, as a software developer, he also created technical articles for the Johnson Space Center. Today this urban Texas cowboy continues to crank out high-quality software as well as non-technical articles covering a multitude of diverse topics ranging from gaming to current affairs. </li> </div> </div> </footer> </article> </main> <div class="fixed-bottom-ad"> <div data-ad-unit-name="adhesion" data-ad-unit-index="1" class="adhesion"></div> <div class="close-button" onclick="this.parentElement.style.display = 'none'">×</div> </div> <aside class="article-sidebar no-print"> <div class="article-sidebar-sticky"> <div data-ad-unit-name="rightrail" data-ad-unit-index="1" class="rightrail-display-ad no-print"></div> <div class="right-rail-promo"> <svg alt="eHow" class="logo" height="21" viewBox="0 0 93 21" width="93" xmlns="http://www.w3.org/2000/svg"><g><path clip-rule="evenodd" d="m80.5556 4c-1.9637 0-3.5556 1.64162-3.5556 3.66667v3.66663c0 2.0251 1.5919 3.6667 3.5556 3.6667h8.8888c1.9637 0 3.5556-1.6416 3.5556-3.6667v-3.66663c0-2.02505-1.5919-3.66667-3.5556-3.66667zm4.0391 6.1967c0 1.32-.7823 2.1266-2.3396 2.1266-1.5502 0-2.3395-.8066-2.3395-2.1266v-2.3267c0-.29455.2387-.53333.5333-.53333.2945 0 .5333.23878.5333.53333v2.246c0 .836.3058 1.1367 1.2729 1.1367.9742 0 1.2729-.3007 1.2729-1.1367v-2.246c0-.29455.2388-.53333.5333-.53333.2946 0 .5334.23878.5334.53333zm2.6316.1613c-.4303 0-.7791.3488-.7791.7791v.5796c0 .2945-.2388.5333-.5333.5333-.2946 0-.5333-.2388-.5333-.5333v-3.8467c0-.29455.2387-.53333.5333-.53333.2945 0 .5333.23878.5333.53333v.64778c0 .42501.3446.76955.7696.76955.2607 0 .5036-.13197.6455-.35065l.8831-1.36096c.0968-.14908.2624-.23905.4401-.23905.422 0 .6713.47284.4329.82102l-.6621.96709c-.2617.3823-.2667.88482-.0126 1.27222l.6725 1.0252c.2332.3555-.0218.8278-.4469.8278-.1809 0-.3496-.0915-.4482-.2432l-.8417-1.2944c-.1437-.2211-.3895-.3544-.6531-.3544z" fill-rule="evenodd"/><path d="m12.4555 12.035c0-2.697-2.175-4.8865-5.655-4.8865-4.408 0-6.8005 2.9435-6.8005 6.844 0 3.944 2.5955 6.5975 6.612 6.5975 3.5235 0 5.742-2.117 5.8145-4.3935 0-.5365-.2175-.783-.5365-.783-.2465 0-.4785.1305-.87.4785-.7395.841-1.8705 1.392-3.103 1.392-1.827 0-3.1465-1.0005-3.6105-3.0015h5.9885c1.3775 0 2.1605-.7975 2.1605-2.2475zm-6.293-2.5955c.928 0 1.6675.783 1.6675 2.3345 0 .609-.261.841-.8265.841h-2.871v-.0145c0-2.1315.8845-3.161 2.03-3.161z"/><path d="m20.9493 16.414v-4.408h6.786v4.408c0 .609-.1885.9135-.725 1.1745l-.551.2175c-.551.2755-.812.6815-.812 1.2905 0 .783.4495 1.2035 1.3195 1.2035h6.699c.8555 0 1.3195-.4205 1.3195-1.2035 0-.609-.2755-1.015-.8265-1.2905l-.551-.2175c-.5365-.261-.7105-.5655-.7105-1.1745v-12.5425c0-.609.174-.899.6815-1.16l.58-.2175c.551-.2755.8265-.6815.8265-1.2905 0-.782999-.464-1.2035-1.3195-1.2035h-6.699c-.87 0-1.3195.420501-1.3195 1.2035 0 .609.261 1.015.812 1.2905l.58.2175c.522.261.696.551.696 1.16v5.5535h-6.786v-5.5535c0-.609.174-.899.696-1.16l.58-.2175c.551-.2755.812-.6815.812-1.2905 0-.782999-.464-1.2035-1.3195-1.2035h-6.699c-.8555 0-1.3195.420501-1.3195 1.2035 0 .609.261 1.015.812 1.2905l.58.2175c.522.261.696.551.696 1.16v12.5425c0 .609-.1885.9135-.725 1.1745l-.551.2175c-.551.2755-.812.6815-.812 1.2905 0 .783.464 1.2035 1.3195 1.2035h6.699c.8555 0 1.3195-.4205 1.3195-1.2035 0-.609-.2755-1.015-.812-1.2905l-.551-.2175c-.5365-.261-.725-.5655-.725-1.1745z"/><path d="m43.2383 7.1485c-4.147 0-6.96 2.9435-6.96 6.6555 0 3.973 2.7115 6.757 6.8005 6.757 4.1615 0 6.96-2.9435 6.96-6.6555 0-3.973-2.697-6.757-6.8005-6.757zm.9715 11.078c-1.2035.2755-2.378-.8845-3.074-3.915-.6815-2.9435-.1885-4.5675.9715-4.8285 1.218-.2755 2.3925.8845 3.0885 3.915.667 2.9435.174 4.5675-.986 4.8285z"/><path d="m57.9635 20.358c.7105 0 1.334-.319 1.769-1.334l1.856-4.5965 1.595 4.466c.3915 1.0295 1.0005 1.4645 1.7545 1.4645h1.479c.812 0 1.4065-.3625 1.7545-1.334l2.755-7.7575c.4785-1.3195.667-1.5225.928-1.6965l.261-.145c.4205-.3335.5655-.58.5655-.986 0-.6235-.406-1.0005-1.0585-1.0005h-3.2045c-.6525 0-1.044.377-1.044 1.0005 0 .493.1595.696.6235.986l.319.1305c.5655.319.696.8265.4495 1.566l-1.7545 5.249-1.711-5.2925c-.2465-.7685-.29-1.247.1595-1.508l.3045-.145c.4495-.29.696-.493.696-.986 0-.6235-.348-1.0005-.957-1.0005h-5.8c-.667 0-.9425.377-.9425 1.0005 0 .4205.1015.7395.464 1.015l.3915.2465c.232.145.4205.406.5945.899l.3625 1.015-1.885 4.8285-1.7545-5.307c-.3045-.957-.203-1.3485.174-1.566l.2755-.145c.377-.261.4785-.6235.4785-1.0875 0-.551-.232-.899-.8265-.899h-5.6405c-.6525 0-1.044.377-1.044 1.0005 0 .4205.1015.609.5945 1.044l.2465.1305c.203.145.3625.348.609 1.044l2.8565 8.236c.377 1.0295.957 1.4645 1.7545 1.4645z"/></g></svg> </div> <div data-ad-unit-name="rightrail" data-ad-unit-index="2" class="rightrail-display-ad no-print"></div> </div> </aside> <footer class="footer-container no-print"> <div class="footer"> <div class="footer-section about"> <div class="logo"> <svg alt="eHow" class="logo" height="21" viewBox="0 0 93 21" width="93" xmlns="http://www.w3.org/2000/svg"><g><path clip-rule="evenodd" d="m80.5556 4c-1.9637 0-3.5556 1.64162-3.5556 3.66667v3.66663c0 2.0251 1.5919 3.6667 3.5556 3.6667h8.8888c1.9637 0 3.5556-1.6416 3.5556-3.6667v-3.66663c0-2.02505-1.5919-3.66667-3.5556-3.66667zm4.0391 6.1967c0 1.32-.7823 2.1266-2.3396 2.1266-1.5502 0-2.3395-.8066-2.3395-2.1266v-2.3267c0-.29455.2387-.53333.5333-.53333.2945 0 .5333.23878.5333.53333v2.246c0 .836.3058 1.1367 1.2729 1.1367.9742 0 1.2729-.3007 1.2729-1.1367v-2.246c0-.29455.2388-.53333.5333-.53333.2946 0 .5334.23878.5334.53333zm2.6316.1613c-.4303 0-.7791.3488-.7791.7791v.5796c0 .2945-.2388.5333-.5333.5333-.2946 0-.5333-.2388-.5333-.5333v-3.8467c0-.29455.2387-.53333.5333-.53333.2945 0 .5333.23878.5333.53333v.64778c0 .42501.3446.76955.7696.76955.2607 0 .5036-.13197.6455-.35065l.8831-1.36096c.0968-.14908.2624-.23905.4401-.23905.422 0 .6713.47284.4329.82102l-.6621.96709c-.2617.3823-.2667.88482-.0126 1.27222l.6725 1.0252c.2332.3555-.0218.8278-.4469.8278-.1809 0-.3496-.0915-.4482-.2432l-.8417-1.2944c-.1437-.2211-.3895-.3544-.6531-.3544z" fill-rule="evenodd"/><path d="m12.4555 12.035c0-2.697-2.175-4.8865-5.655-4.8865-4.408 0-6.8005 2.9435-6.8005 6.844 0 3.944 2.5955 6.5975 6.612 6.5975 3.5235 0 5.742-2.117 5.8145-4.3935 0-.5365-.2175-.783-.5365-.783-.2465 0-.4785.1305-.87.4785-.7395.841-1.8705 1.392-3.103 1.392-1.827 0-3.1465-1.0005-3.6105-3.0015h5.9885c1.3775 0 2.1605-.7975 2.1605-2.2475zm-6.293-2.5955c.928 0 1.6675.783 1.6675 2.3345 0 .609-.261.841-.8265.841h-2.871v-.0145c0-2.1315.8845-3.161 2.03-3.161z"/><path d="m20.9493 16.414v-4.408h6.786v4.408c0 .609-.1885.9135-.725 1.1745l-.551.2175c-.551.2755-.812.6815-.812 1.2905 0 .783.4495 1.2035 1.3195 1.2035h6.699c.8555 0 1.3195-.4205 1.3195-1.2035 0-.609-.2755-1.015-.8265-1.2905l-.551-.2175c-.5365-.261-.7105-.5655-.7105-1.1745v-12.5425c0-.609.174-.899.6815-1.16l.58-.2175c.551-.2755.8265-.6815.8265-1.2905 0-.782999-.464-1.2035-1.3195-1.2035h-6.699c-.87 0-1.3195.420501-1.3195 1.2035 0 .609.261 1.015.812 1.2905l.58.2175c.522.261.696.551.696 1.16v5.5535h-6.786v-5.5535c0-.609.174-.899.696-1.16l.58-.2175c.551-.2755.812-.6815.812-1.2905 0-.782999-.464-1.2035-1.3195-1.2035h-6.699c-.8555 0-1.3195.420501-1.3195 1.2035 0 .609.261 1.015.812 1.2905l.58.2175c.522.261.696.551.696 1.16v12.5425c0 .609-.1885.9135-.725 1.1745l-.551.2175c-.551.2755-.812.6815-.812 1.2905 0 .783.464 1.2035 1.3195 1.2035h6.699c.8555 0 1.3195-.4205 1.3195-1.2035 0-.609-.2755-1.015-.812-1.2905l-.551-.2175c-.5365-.261-.725-.5655-.725-1.1745z"/><path d="m43.2383 7.1485c-4.147 0-6.96 2.9435-6.96 6.6555 0 3.973 2.7115 6.757 6.8005 6.757 4.1615 0 6.96-2.9435 6.96-6.6555 0-3.973-2.697-6.757-6.8005-6.757zm.9715 11.078c-1.2035.2755-2.378-.8845-3.074-3.915-.6815-2.9435-.1885-4.5675.9715-4.8285 1.218-.2755 2.3925.8845 3.0885 3.915.667 2.9435.174 4.5675-.986 4.8285z"/><path d="m57.9635 20.358c.7105 0 1.334-.319 1.769-1.334l1.856-4.5965 1.595 4.466c.3915 1.0295 1.0005 1.4645 1.7545 1.4645h1.479c.812 0 1.4065-.3625 1.7545-1.334l2.755-7.7575c.4785-1.3195.667-1.5225.928-1.6965l.261-.145c.4205-.3335.5655-.58.5655-.986 0-.6235-.406-1.0005-1.0585-1.0005h-3.2045c-.6525 0-1.044.377-1.044 1.0005 0 .493.1595.696.6235.986l.319.1305c.5655.319.696.8265.4495 1.566l-1.7545 5.249-1.711-5.2925c-.2465-.7685-.29-1.247.1595-1.508l.3045-.145c.4495-.29.696-.493.696-.986 0-.6235-.348-1.0005-.957-1.0005h-5.8c-.667 0-.9425.377-.9425 1.0005 0 .4205.1015.7395.464 1.015l.3915.2465c.232.145.4205.406.5945.899l.3625 1.015-1.885 4.8285-1.7545-5.307c-.3045-.957-.203-1.3485.174-1.566l.2755-.145c.377-.261.4785-.6235.4785-1.0875 0-.551-.232-.899-.8265-.899h-5.6405c-.6525 0-1.044.377-1.044 1.0005 0 .4205.1015.609.5945 1.044l.2465.1305c.203.145.3625.348.609 1.044l2.8565 8.236c.377 1.0295.957 1.4645 1.7545 1.4645z"/></g></svg> <svg alt="by Leaf Group" class="logo" height="27" viewBox="0 0 74 27" width="74" xmlns="http://www.w3.org/2000/svg"><g><path d="m45.757 20.6032h-2.059c-.024 0-.044-.0199-.044-.0444v-17.17373c0-.02461.02-.04451.044-.04451h2.059c.024 0 .044.0199.044.04451v17.17373c0 .0245-.02.0444-.044.0444z"/><path d="m49.704 12.7064h4.406c.024 0 .044-.0199.044-.0444v-.4411c0-2.1672-.708-3.22084-2.165-3.22084-.755 0-1.329.32004-1.706.95137-.384.64237-.579 1.48657-.579 2.50937zm2.237 8.2416c-1.584 0-2.752-.5425-3.473-1.6126-.716-1.0617-1.079-2.7612-1.079-5.0513 0-2.4016.391-4.186 1.163-5.30373.777-1.12546 1.95-1.69611 3.485-1.69611 1.438 0 2.538.46856 3.267 1.39265.726.91926 1.094 2.45069 1.094 4.55149v1.1494c0 .0245-.02.0444-.044.0444h-6.677c-.025 0-.045.02-.045.0446v.3212c0 1.5652.191 2.7131.568 3.4113.375.6951.976 1.0329 1.837 1.0329.693 0 1.224-.2608 1.577-.775.358-.5219.54-1.2398.54-2.1337v-.0662h2.148v.0662c0 1.29-.401 2.3944-1.192 3.2827-.793.8903-1.859 1.3418-3.169 1.3418z"/><path d="m64.052 13.7792c0-.0369-.041-.0572-.07-.0352-.296.2205-.742.431-1.33.6269-1.077.3327-1.769.604-2.058.8072-.285.1998-.495.4526-.625.7518-.132.3015-.199.6922-.199 1.1612 0 1.4408.575 2.1411 1.757 2.1411.651 0 1.242-.2442 1.754-.7258.512-.4803.771-1.0209.771-1.6072zm-2.981 7.1688c-1.15 0-2.038-.3342-2.64-.9932-.6-.657-.905-1.6045-.905-2.8157 0-1.895.856-3.119 2.542-3.638l2.64-.7919c.53-.1559.904-.3398 1.111-.5473.203-.2019.305-.6342.305-1.2847 0-1.26305-.653-1.87714-1.997-1.87714-1.441 0-2.141.81034-2.141 2.47714v.162h-2.148v-.162c0-1.4358.354-2.50528 1.052-3.17866.697-.67305 1.819-1.01428 3.333-1.01428 1.353 0 2.364.27992 3.006.83173.644.55471.971 1.40314.971 2.52121v7.7016c0 .4559.07.6326.128.7005.082.0961.235.1449.453.1449.163 0 .305-.037.421-.11l.102-.0632v1.6145l-.055.0097c-.451.0801-.899.1208-1.331.1208-.658 0-1.112-.1496-1.348-.4447-.194-.2417-.319-.5812-.374-1.0114-.005-.0412-.057-.054-.08-.0194-.311.4702-.717.8579-1.211 1.1543-.568.3406-1.185.5132-1.834.5132z"/><path d="m71.174 20.6096h-2.059c-.024 0-.044-.0199-.044-.0444v-11.18734c0-.02461-.02-.04452-.045-.04452h-1.782c-.025 0-.044-.0199-.044-.0444v-1.62699c0-.02461.019-.04452.044-.04452h1.782c.025 0 .045-.0199.045-.04451v-1.49666c0-1.93837.934-2.9213 2.777-2.9213h1.557c.025 0 .045.0199.045.04451v1.77102c0 .0245-.02.0444-.045.0444h-.981c-.811 0-1.205.37858-1.205 1.15725v1.40078c0 .02461.02.04451.044.04451h2.119c.024 0 .044.01991.044.04452v1.62699c0 .0245-.02.0444-.044.0444h-2.119c-.024 0-.044.01991-.044.04452v11.18734c0 .0245-.02.0444-.045.0444z"/><path d="m39.983 13.8532c-.406-3.1841-1.834-5.61001-3.816-7.92728-2.152-2.51662-4.597-4.68387-7.175-5.91227-.047-.02225668-.103-.01712052-.145.0141245-.043.031138-.063.0828205-.055.1339685.774 4.461617-.268 7.050787-1.276 9.554667-.504 1.25199-1.025 2.43199-1.287 3.91999-.848 4.7996.651 7.8792 4.676 8.9056.223.0506.283.0601.445.0836.022.0033.045-.0099.053-.0308.575-1.447.838-2.2116 1.084-3.3974 1.002-4.8437.709-9.1743-.284-12.05507-.019-.05371.054-.09202.086-.04537 1.371 1.97465 1.965 5.67034 1.552 10.00834-.004.0432.045.069.079.041 1.477-1.2542 3.016-2.1214 4.488-2.5141.055-.0146.086.0586.037.0882-8.365 5.1375-5.796 11.5605-5.576 11.9203.017.0287.048.0449.082.0449h.51c.037 0 .061-.041.041-.0732-.169-.2825-.737-1.3324-.437-2.2652.508-1.5736 2.076-1.3648 4.365-3.2335 1.94-1.5837 2.959-4.0762 2.553-7.2605z"/><path d="m46.421 26.5815c-.246.0968-.494.1457-.744.1457-.317 0-.601-.0586-.851-.1758-.25-.1167-.462-.2745-.637-.4731-.174-.1981-.307-.4261-.398-.6842-.092-.2577-.137-.5255-.137-.8035 0-.3095.042-.6038.128-.8838.085-.2795.212-.5245.381-.7346.168-.2102.378-.3778.631-.5026.252-.1256.546-.1879.883-.1879.23 0 .447.027.652.0803.204.0537.387.1381.547.2533.161.1147.296.2606.405.4373.104.1686.177.3712.218.6073.003.0164-.01.0324-.027.0324h-.512c-.012 0-.023-.0093-.025-.0217-.029-.1535-.079-.2863-.151-.3982-.076-.1166-.169-.213-.28-.2886-.111-.0751-.237-.1317-.378-.1695-.141-.0377-.29-.0561-.449-.0561-.258 0-.479.0513-.663.1545-.185.1031-.336.2391-.453.4076-.117.1686-.203.3609-.258.5773-.056.216-.084.4374-.084.6635 0 .2223.032.4353.095.6397.064.2044.157.3845.28.5415.123.1568.275.2818.455.3748.181.0934.39.1399.628.1399.222 0 .418-.0358.589-.1071.171-.0716.315-.1699.432-.2949.117-.1249.205-.2716.265-.4402.056-.1606.082-.3332.078-.5172-.001-.0147-.013-.0271-.028-.0271h-1.303c-.015 0-.027-.0119-.027-.0266v-.4227c0-.0148.012-.0268.027-.0268h1.809c.015 0 .027.012.027.0268v2.1839c0 .0148-.012.0267-.027.0267h-.31c-.012 0-.023-.0079-.026-.0195l-.129-.4609c-.006-.0207-.032-.0253-.046-.0084-.161.2011-.357.3472-.587.4385z"/><path d="m52.221 24.3146c.12-.0199.224-.0587.313-.1162.089-.0577.161-.1346.214-.232.054-.0974.08-.2232.08-.3777 0-.2146-.059-.3889-.178-.524-.119-.1346-.311-.2025-.577-.2025h-1.378c-.015 0-.027.012-.027.0268v1.4285c0 .0146.012.0266.027.0266h1.152c.13 0 .255-.0096.374-.0295zm-.119-1.9284c.405 0 .721.0993.949.2979.229.198.343.4701.343.815 0 .2581-.059.4842-.176.6784-.117.1948-.305.3274-.562.3986v.0121c.123.0237.223.0634.301.1191.077.0557.138.1221.184.199.046.0776.079.1637.101.2592.022.0949.038.1942.051.2973.007.1032.013.2083.018.3157.003.1071.013.2122.029.3153.016.1032.039.2014.068.2944.03.0935.075.1758.135.247h-.632c-.039-.0436-.066-.1032-.079-.1787-.014-.075-.024-.1594-.028-.2528-.003-.093-.007-.1932-.011-.3002-.005-.1076-.016-.2126-.036-.3158-.016-.1031-.036-.2009-.06-.2944-.023-.0929-.061-.1744-.112-.244-.052-.0694-.12-.125-.203-.1666-.083-.0418-.194-.0625-.333-.0625h-1.354c-.015 0-.027.012-.027.0266v1.7617c0 .0148-.012.0267-.026.0267h-.513c-.014 0-.026-.0119-.026-.0267v-4.1956c0-.0148.012-.0267.026-.0267z"/><path d="m56.249 25.1412c.056.2083.143.3957.262.5623.119.1665.272.3007.458.4019.187.1007.409.1516.667.1516s.48-.0509.667-.1516c.186-.1012.338-.2354.458-.4019.119-.1666.206-.354.262-.5623.055-.2082.083-.4193.083-.6339 0-.214-.028-.4252-.083-.6334-.056-.2087-.143-.3962-.262-.5628-.12-.1666-.272-.3002-.458-.4014-.187-.1012-.409-.1515-.667-.1515s-.48.0503-.667.1515c-.186.1012-.339.2348-.458.4014s-.206.3541-.262.5628c-.055.2082-.083.4194-.083.6334 0 .2146.028.4257.083.6339zm-.52-1.4698c.085-.2677.213-.505.384-.7113.17-.2063.382-.371.636-.494.254-.1225.55-.1844.887-.1844s.633.0619.886.1844c.255.123.467.2877.637.494.171.2063.299.4436.384.7113.085.2679.128.5464.128.8359 0 .2896-.043.5685-.128.8364-.085.2678-.213.5046-.384.7109-.17.2063-.382.3699-.637.491-.253.1211-.549.1816-.886.1816s-.633-.0605-.887-.1816-.466-.2847-.636-.491c-.171-.2063-.299-.4431-.384-.7109-.086-.2679-.128-.5468-.128-.8364 0-.2895.042-.568.128-.8359z"/><path d="m65.043 26.3228c-.29.2717-.702.4078-1.238.4078-.547 0-.975-.1302-1.282-.3898-.308-.2601-.462-.6737-.462-1.2407v-2.6872c0-.0148.012-.0267.027-.0267h.512c.015 0 .027.0119.027.0267v2.6872c0 .3806.101.6692.303.8659.203.1961.494.2943.875.2943.361 0 .636-.0982.825-.2943.188-.1967.282-.4853.282-.8659v-2.6872c0-.0148.012-.0267.027-.0267h.512c.015 0 .026.0119.026.0267v2.6872c0 .5434-.145.951-.434 1.2227z"/><path d="m69.73 24.4216c.322.0038.557-.0615.706-.1966.149-.1346.223-.3293.223-.583 0-.2539-.074-.4471-.223-.5802-.149-.1327-.384-.1996-.706-.1996h-1.08c-.014 0-.026.012-.026.0268v1.5059c0 .0148.012.0267.026.0267zm.191-2.0354c.428 0 .753.1104.973.3303.22.2203.33.5288.33.9255 0 .3965-.11.706-.33.9283s-.545.3312-.973.3273h-1.271c-.014 0-.026.012-.026.0267v1.6842c0 .0148-.012.0267-.027.0267h-.512c-.015 0-.027-.0119-.027-.0267v-4.1956c0-.0148.012-.0267.027-.0267z"/><path d="m.592041 12.1158v5.6h2.303999c.96 0 1.672-.552 1.672-1.488 0-.736-.48801-1.16-.99201-1.28v-.096c.488-.136.99201-.536.99201-1.272 0-.912-.704-1.464-1.648-1.464zm.647999.584h1.624c.656 0 1.072.368 1.072.936 0 .592-.4.976-1.064.976h-1.632zm0 2.496h1.59999c.704 0 1.09601.368 1.09601.96 0 .576-.392.976-1.064.976h-1.632z"/><path d="m5.24113 12.1158 2.01601 3.488v2.112h.648v-2.112l2.01599-3.488h-.75199l-1.528 2.688h-.112l-1.536-2.688z"/></g></svg> </div> <p>Whether you need to fix, build, create or learn, eHow gives you practical solutions to the problems life throws at you. We empower you to efficiently solve each new challenge and make your life better and easier.</p> </div> <div class="footer-section nav" id="site-index"> <ul class="nav-section"> <li class="nav-section-header"></li> <li><a href="https://www.ehow.com/about/">About</a></li> <li><a href="mailto:hello@ehow.com">Contact</a></li> <li><a href="https://www.ehow.com/advertise">Advertise</a></li> </ul> <ul class="nav-section"> <li class="nav-section-header">Legal</li> <li><a href="//www.ehow.co.uk/accessibility">Accessibility</a></li> <li><a href="//www.ehow.co.uk/privacy">Privacy Notice</a></li> <li><a href="//www.ehow.co.uk/cookie_notice">Cookie Notice</a></li> <li class="ccpa"><a data-event="footer nav" class="ot-sdk-show-settings" rel="nofollow">Manage Preferences</a></li> <li><a href="//www.ehow.co.uk/privacy#section_12_2">California Notice of Collection</a></li> <li><a href="//www.ehow.co.uk/terms-of-use">Terms of Use</a></li> <li><a href="//www.ehow.co.uk/copyright-policy">Copyright Policy</a></li> </ul> </div> <div class="footer-section legal"> <p class="footer-legal">© 2024 Leaf Group Ltd. / Leaf Group Media, All Rights Reserved.</p> </div> </div> </footer> <script src="//www.ehow.co.uk/dist/js/chunk-vendors.js"></script><script src="//www.ehow.co.uk/dist/js/main.js"></script> <div id="out-of-page"></div> </body> </html>