Skip to content

Previewing Content Changes In Your Work With document.designMode — TechRuum

So, you just deployed a change to your website. Congrats! Everything went according to plan, but now that you look at your work in production, you start questioning your change. Perhaps that change was as simple as a new heading and doesn’t seem to fit the space. Maybe you added an image, but it just doesn’t feel right in that specific context.

What do you do? Do you start deploying more changes? It’s not like you need to crack open Illustrator or Figma to mock up a small change like that, but previewing your changes before deploying them would still be helpful.

Enter document.designMode. It’s not new. In fact, I just recently came across it for the first time and had one of those “Wait, this exists?” moments because it’s a tool we’ve had forever, even in Internet Explorer 6. But for some reason, I’m only now hearing about it, and it turns out that many of my colleagues are also hearing about it for the first time.

What exactly is document.designMode? Perhaps a little video demonstration can help demonstrate how it allows you to make direct edits to a page.

Video demonstration of how document.designMode works.

At its simplest, document.designMode makes webpages editable, similar to a text editor. I’d say it’s like having an edit mode for the web — one can click anywhere on a webpage to modify existing text, move stuff around, and even delete elements. It’s like having Apple’s “Distraction Control” feature at your beck and call.

I think this is a useful tool for developers, designers, clients, and regular users alike.

You might be wondering if this is just like contentEditable because, at a glance, they both look similar. But no, the two serve different purposes. contentEditable is more focused on making a specific element editable, while document.designMode makes the whole page editable.

Enabling document.designMode can be done in the browser’s developer tools:

  1. Right-click anywhere on a webpage and click Inspect.
  2. Click the Console tab.
  3. Type document.designMode = "on" and press Enter.

To turn it off, refresh the page. That’s it.

Another method is to create a bookmark that activates the mode when clicked:

  1. Create a new bookmark in your browser.
  2. You can name it whatever, e.g., “EDIT_MODE”.
  3. Input this code in the URL field:
javascript:(function(){document.designMode = document.designMode === 'on' ? 'off' : 'on';})();

And now you have a switch that toggles document.designMode on and off.

Use Cases

There are many interesting, creative, and useful ways to use this tool.

Basic Content Editing

I dare say this is the core purpose of document.designMode, which is essentially editing any text element of a webpage for whatever reason. It could be the headings, paragraphs, or even bullet points. Whatever the case, your browser effectively becomes a “What You See Is What You Get” (WYSIWYG) editor, where you can make and preview changes on the spot.

Basic content editing using document.designMode.

Landing Page A/B Testing

Let’s say we have a product website with an existing copy, but then you check out your competitors, and their copy looks more appealing. Naturally, you’d want to test it out. Instead of editing on the back end or taking notes for later, you can use document.designMode to immediately see how that copy variation would fit into the landing page layout and then easily compare and contrast the two versions.

Landing page A/B testing with document.designMode.

This could also be useful for copywriters or solo developers.

SEO Title And Meta Description

Everyone wants their website to rank at the top of search results because that means more traffic. However, as broad as SEO is as a practice, the </code> tag and <code><meta/></code> description is a website’s first impression in search results, both for visitors and search engines, as they can make or break the click-through rate.</p> <p>The question that arises is, how do you know if certain text gets cut off in search results? I think <code>document.designMode</code> can fix that before pushing it live.</p> <figure class="video-embed-container break-out"><figcaption>SEO title and meta description with <code>document.designMode</code>.</figcaption></figure> <p>With this tool, I think it’d be a lot easier to see how different title lengths look when truncated, whether the keywords are instantly visible, and how compelling it’d be compared to other competitors on the same search result.</p> <h3 id="developer-workflows">Developer Workflows</h3> <p>To be completely honest, developers probably won’t want to use <code>document.designMode</code> for actual development work. However, it can still be handy for breaking stuff on a website, moving elements around, repositioning images, deleting UI elements, and undoing what was deleted, all in real time.</p> <p>This could help if you’re skeptical about the position of an element or feel a button might do better at the top than at the bottom; <code>document.designMode</code> sure could help. It sure beats rearranging elements in the codebase just to determine if an element positioned differently would look good. But again, most of the time, we’re developing in a local environment where these things can be done just as effectively, so your mileage may vary as far as how useful you find <code>document.designMode</code> in your development work.</p> <h3 id="client-and-team-collaboration">Client And Team Collaboration</h3> <p>It is a no-brainer that some clients almost always have last-minute change requests — stuff like <em>“Can we remove this button?”</em> or <em>“Let’s edit the pricing features in the free tier.”</em></p> <p>To the client, these are just little tweaks, but to you, it could be a hassle to start up your development environment to make those changes. I believe <code>document.designMode</code> can assist in such cases by making those changes in seconds without touching production and sharing screenshots with the client.</p> <figure class="video-embed-container break-out"><figcaption>Client and team collaboration with <code>document.designMod</code>.</figcaption></figure> <p>It could also become useful in <strong>team meetings when discussing UI changes</strong>. Seeing changes in real-time through screen sharing can help facilitate discussion and lead to quicker conclusions.</p> <h3 id="live-dom-tutorials">Live DOM Tutorials</h3> <p>For beginners learning web development, I feel like <code>document.designMode</code> can help provide a first look at how it feels to manipulate a webpage and immediately see the results — sort of like <strong>a pre-web development stage</strong>, even before touching a code editor.</p> <p>As learners experiment with moving things around, an instructor can explain how each change works and affects the flow of the page.</p> <h3 id="social-media-content-preview">Social Media Content Preview</h3> <p>We can use the same idea to preview social media posts before publishing them! For instance, <code>document.designMode</code> can gauge the effectiveness of different call-to-action phrases or visualize how ad copy would look when users stumble upon it when scrolling through the platform. This would be effective on any social media platform.</p> <figure class="video-embed-container break-out"><figcaption>Social media content preview with <code>document.designMode</code>.</figcaption></figure> <h3 id="memes">Memes</h3> <p>I didn’t think it’d be fair not to add this. It might seem out of place, but let’s be frank: creating memes is probably one of the first things that comes to mind when anyone discovers <code>document.designMode</code>.</p> <p>You can create parody versions of social posts, tweak article headlines, change product prices, and manipulate YouTube views or Reddit comments, just to name a few of the ways you could meme things. Just remember: this shouldn’t be used to spread false information or cause actual harm. Please keep it respectful and ethical!</p> <h2 id="conclusion">Conclusion</h2> <p><code>document.designMode = "on"</code> is one of those delightful browser tricks that can be immediately useful when you discover it for the first time. It’s a raw and primitive tool, but you can’t deny its utility and purpose.</p> <p>So, give it a try, show it to your colleagues, or even edit this article. You never know when it might be exactly what you need.</p> <h3 id="further-reading">Further Reading</h3> <div class="signature"><img src="https://www.smashingmagazine.com/images/logo/logo--red.png" alt="Smashing Editorial" width="35" height="46" loading="lazy" decoding="async" title="Previewing Content Changes In Your Work With document.designMode — TechRuum 1"><br /> <span>(gg, yk)</span></div> </div> <p>#Previewing #Content #Work #Withdocument.designMode #Smashing #Magazine</p> </div> <div class="post-tags wpex-mb-40 wpex-last-mr-0"><a href="https://techruum.com/tag/content/" rel="tag">Content</a><a href="https://techruum.com/tag/previewing/" rel="tag">Previewing</a><a href="https://techruum.com/tag/techruum/" rel="tag">TechRuum</a><a href="https://techruum.com/tag/withdocument-designmode/" rel="tag">Withdocument.designMode</a><a href="https://techruum.com/tag/work/" rel="tag">Work</a></div> <div class="wpex-social-share style-flat position-horizontal wpex-mx-auto wpex-mb-40 wpex-print-hidden" data-target="_blank" data-source="https%3A%2F%2Ftechruum.com%2F" data-url="https%3A%2F%2Ftechruum.com%2Fpreviewing-content-changes-in-your-work-with-document-designmode-techruum%2F" data-title="Previewing Content Changes In Your Work With document.designMode — TechRuum" data-image="https%3A%2F%2Ftechruum.com%2Fwp-content%2Fuploads%2F2025%2F03%2Fpreviewing-content-changes-work-documentdesignmode.jpg" data-summary="You%20probably%20already%20know%20that%20you%20can%20use%20developer%20tools%20in%20your%20browser%20to%20make%20on-the-spot%20changes%20to%20a%20webpage%20%E2%80%94%20simply%20click%20the%20node%20in%20the%20Inspector%20and%20make" data-email-subject="I wanted you to see this link" data-email-body="I wanted you to see this link https%3A%2F%2Ftechruum.com%2Fpreviewing-content-changes-in-your-work-with-document-designmode-techruum%2F"> <h3 class="theme-heading border-bottom social-share-title"><span class="text">Share This</span></h3> <ul class="wpex-social-share__list wpex-m-0 wpex-p-0 wpex-list-none wpex-flex wpex-flex-wrap wpex-gap-5"> <li class="wpex-social-share__item wpex-m-0 wpex-p-0 wpex-inline-block"> <a href="#" role="button" class="wpex-social-share__link wpex-social-share__link--twitter wpex-twitter wpex-flex wpex-items-center wpex-justify-center wpex-no-underline wpex-gap-10 wpex-duration-150 wpex-transition-colors wpex-social-bg" aria-label="Post on X"> <span class="wpex-social-share__icon"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg></span></span> <span class="wpex-social-share__label wpex-label">Twitter</span> </a> </li> <li class="wpex-social-share__item wpex-m-0 wpex-p-0 wpex-inline-block"> <a href="#" role="button" class="wpex-social-share__link wpex-social-share__link--facebook wpex-facebook wpex-flex wpex-items-center wpex-justify-center wpex-no-underline wpex-gap-10 wpex-duration-150 wpex-transition-colors wpex-social-bg" aria-label="Share on Facebook"> <span class="wpex-social-share__icon"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z"/></svg></span></span> <span class="wpex-social-share__label wpex-label">Facebook</span> </a> </li> <li class="wpex-social-share__item wpex-m-0 wpex-p-0 wpex-inline-block"> <a href="#" role="button" class="wpex-social-share__link wpex-social-share__link--linkedin wpex-linkedin wpex-flex wpex-items-center wpex-justify-center wpex-no-underline wpex-gap-10 wpex-duration-150 wpex-transition-colors wpex-social-bg" aria-label="Share on LinkedIn"> <span class="wpex-social-share__icon"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M100.3 448H7.4V148.9h92.9zM53.8 108.1C24.1 108.1 0 83.5 0 53.8a53.8 53.8 0 0 1 107.6 0c0 29.7-24.1 54.3-53.8 54.3zM447.9 448h-92.7V302.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V448h-92.8V148.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V448z"/></svg></span></span> <span class="wpex-social-share__label wpex-label">LinkedIn</span> </a> </li> <li class="wpex-social-share__item wpex-m-0 wpex-p-0 wpex-inline-block"> <a href="#" role="button" class="wpex-social-share__link wpex-social-share__link--email wpex-email wpex-flex wpex-items-center wpex-justify-center wpex-no-underline wpex-gap-10 wpex-duration-150 wpex-transition-colors wpex-social-bg" aria-label="Share via Email"> <span class="wpex-social-share__icon"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z"/></svg></span></span> <span class="wpex-social-share__label wpex-label">Email</span> </a> </li> </ul> </div> <section class="author-bio wpex-boxed wpex-flex wpex-gap-20 wpex-flex-col wpex-sm-flex-row wpex-text-center wpex-sm-text-left wpex-mb-40"> <div class="author-bio-avatar wpex-flex-shrink-0"> <a href="https://techruum.com/author/simeonmoses9/" title="Visit Author Page"><img alt='' src='https://techruum.com/wp-content/uploads/2022/05/Techrumm-icon-01-300x300.jpg' srcset='https://techruum.com/wp-content/uploads/2022/05/Techrumm-icon-01-300x300.jpg 300w, https://techruum.com/wp-content/uploads/2022/05/Techrumm-icon-01-1024x1024.jpg 1024w, https://techruum.com/wp-content/uploads/2022/05/Techrumm-icon-01-150x150.jpg 150w, https://techruum.com/wp-content/uploads/2022/05/Techrumm-icon-01-768x768.jpg 768w, https://techruum.com/wp-content/uploads/2022/05/Techrumm-icon-01-1536x1536.jpg 1536w, https://techruum.com/wp-content/uploads/2022/05/Techrumm-icon-01-2048x2048.jpg 2048w' class='avatar avatar-70 photo wpex-align-middle wpex-round' height='70' width='70' decoding='async'/></a> </div> <div class="author-bio-content wpex-flex-grow wpex-last-mb-0"> <h3 class="author-bio-title wpex-heading wpex-m-0 wpex-mb-10 wpex-text-lg"> <a href="https://techruum.com/author/simeonmoses9/" title="Visit Author Page" rel="author" class="wpex-no-underline">TechRuum</a> </h3> <div class="author-bio-description wpex-mb-15 wpex-last-mb-0"><p>TechRuum Inc is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market. TechRuum partners with its clients to achieve success in the global markets with its specialized expertise in providing Onsite, Offsite and Offshore IT services and solutions. TechRuum’ core competency lies in enabling its clients to reduce the cost and complexity of deploying information technology while ensuring reliability, scalability, and manageability.</p> </div> <div class="author-bio-social wpex-mb-15"><div class="author-bio-social__items wpex-inline-flex wpex-flex-wrap wpex-gap-5"><a href="https://twitter.com/TechRuum" class="author-bio-social__item wpex-social-btn wpex-social-btn-flat wpex-social-bg wpex-rounded-full wpex-x-twitter"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg></span><span class="screen-reader-text">Twitter</span></a><a href="https://www.facebook.com/TechRuum-114932764555254" class="author-bio-social__item wpex-social-btn wpex-social-btn-flat wpex-social-bg wpex-rounded-full wpex-facebook"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z"/></svg></span><span class="screen-reader-text">Facebook</span></a><a href="https://www.linkedin.com/company/techruum" class="author-bio-social__item wpex-social-btn wpex-social-btn-flat wpex-social-bg wpex-rounded-full wpex-linkedin"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M100.3 448H7.4V148.9h92.9zM53.8 108.1C24.1 108.1 0 83.5 0 53.8a53.8 53.8 0 0 1 107.6 0c0 29.7-24.1 54.3-53.8 54.3zM447.9 448h-92.7V302.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V448h-92.8V148.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V448z"/></svg></span><span class="screen-reader-text">LinkedIn</span></a><a href="https://instagram.com/techruum" class="author-bio-social__item wpex-social-btn wpex-social-btn-flat wpex-social-bg wpex-rounded-full wpex-instagram"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg></span><span class="screen-reader-text">Instagram</span></a></div></div> </div> </section> <div class="related-posts wpex-overflow-hidden wpex-mb-40 wpex-clr"> <h3 class="theme-heading border-bottom related-posts-title"><span class="text">Related Posts</span></h3> <div class="wpex-row wpex-clr"> <article class="related-post col span_1_of_3 col-1 wpex-clr post-1775 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-bar tag-creating tag-css tag-highlight tag-javascript tag-moving tag-navigation tag-techruum entry has-media"> <div class="related-post-inner wpex-flex-grow"> <figure class="related-post-figure wpex-mb-15 wpex-relative"> <a href="https://techruum.com/creating-the-moving-highlight-navigation-bar-with-javascript-and-css-techruum/" title="Creating The “Moving Highlight” Navigation Bar With JavaScript And CSS — TechRuum" class="related-post-thumb"> <img loading="lazy" class="wpex-align-middle" decoding="async" src="https://techruum.com/wp-content/uploads/2025/06/creating-moving-highlight-navigation-bar-javascript-css-700x350.jpg" alt="" width="700" height="350"> </a> </figure> <div class="related-post-content wpex-clr"> <div class="related-post-title entry-title wpex-m-0 wpex-mb-10"> <a href="https://techruum.com/creating-the-moving-highlight-navigation-bar-with-javascript-and-css-techruum/">Creating The “Moving Highlight” Navigation Bar With JavaScript And CSS — TechRuum</a> </div> <div class="related-post-excerpt wpex-leading-normal wpex-last-mb-0 wpex-clr"><p>In this tutorial, Blake Lundquist walks us through two methods of creating the “moving-highlight” navigation…</p></div> </div> </div> </article> <article class="related-post col span_1_of_3 col-2 wpex-clr post-1771 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-designers tag-details tag-stop tag-stuck tag-techruum entry has-media"> <div class="related-post-inner wpex-flex-grow"> <figure class="related-post-figure wpex-mb-15 wpex-relative"> <a href="https://techruum.com/why-designers-get-stuck-in-the-details-and-how-to-stop-techruum/" title="Why Designers Get Stuck In The Details And How To Stop — TechRuum" class="related-post-thumb"> <img loading="lazy" class="wpex-align-middle" decoding="async" src="https://techruum.com/wp-content/uploads/2025/06/why-designers-get-stuck-in-details-700x350.jpg" alt="" width="700" height="350"> </a> </figure> <div class="related-post-content wpex-clr"> <div class="related-post-title entry-title wpex-m-0 wpex-mb-10"> <a href="https://techruum.com/why-designers-get-stuck-in-the-details-and-how-to-stop-techruum/">Why Designers Get Stuck In The Details And How To Stop — TechRuum</a> </div> <div class="related-post-excerpt wpex-leading-normal wpex-last-mb-0 wpex-clr"><p>Designers love to craft, but polishing pixels before the problem is solved is a time-sink…</p></div> </div> </div> </article> <article class="related-post col span_1_of_3 col-3 wpex-clr post-1767 post type-post status-publish format-standard has-post-thumbnail hentry category-uncategorized tag-art tag-design tag-maintenance tag-motorcycle tag-teach tag-techruum tag-web tag-zen entry has-media"> <div class="related-post-inner wpex-flex-grow"> <figure class="related-post-figure wpex-mb-15 wpex-relative"> <a href="https://techruum.com/what-zen-and-the-art-of-motorcycle-maintenance-can-teach-us-about-web-design-techruum/" title="What Zen And The Art Of Motorcycle Maintenance Can Teach Us About Web Design — TechRuum" class="related-post-thumb"> <img loading="lazy" class="wpex-align-middle" decoding="async" src="https://techruum.com/wp-content/uploads/2025/05/what-zen-art-motorcycle-maintenance-teach-web-design-700x350.jpg" alt="" width="700" height="350"> </a> </figure> <div class="related-post-content wpex-clr"> <div class="related-post-title entry-title wpex-m-0 wpex-mb-10"> <a href="https://techruum.com/what-zen-and-the-art-of-motorcycle-maintenance-can-teach-us-about-web-design-techruum/">What Zen And The Art Of Motorcycle Maintenance Can Teach Us About Web Design — TechRuum</a> </div> <div class="related-post-excerpt wpex-leading-normal wpex-last-mb-0 wpex-clr"><p>Road-tripping along the line between engineering and spirituality, Robert M. Pirsig’s musings on the arts,…</p></div> </div> </div> </article></div> </div> </article> </div> </div> <aside id="sidebar" class="sidebar-primary sidebar-container wpex-print-hidden"> <div id="sidebar-inner" class="sidebar-container-inner wpex-mb-40"><div id="search-1" class="sidebar-box widget widget_search wpex-mb-30 wpex-clr"> <form role="search" method="get" class="searchform searchform--classic" action="https://techruum.com/"> <label for="searchform-input-6850714e93726" class="searchform-label screen-reader-text">Search</label> <input id="searchform-input-6850714e93726" type="search" class="searchform-input" name="s" placeholder="Search" required> <button type="submit" class="searchform-submit" aria-label="Submit search"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg></span></button> </form> </div> <div id="recent-posts-1" class="wpex-bordered-list sidebar-box widget widget_recent_entries wpex-mb-30 wpex-clr"> <div class='widget-title wpex-heading wpex-text-lg wpex-mb-20'>Recent Posts</div> <ul> <li> <a href="https://techruum.com/creating-the-moving-highlight-navigation-bar-with-javascript-and-css-techruum/">Creating The “Moving Highlight” Navigation Bar With JavaScript And CSS — TechRuum</a> <span class="post-date">June 13, 2025</span> </li> <li> <a href="https://techruum.com/designing-with-passion-judgment-and-a-lot-of-auto-layouts/">Designing with Passion, Judgment, and a Lot of Auto-Layouts</a> <span class="post-date">June 10, 2025</span> </li> <li> <a href="https://techruum.com/why-designers-get-stuck-in-the-details-and-how-to-stop-techruum/">Why Designers Get Stuck In The Details And How To Stop — TechRuum</a> <span class="post-date">June 4, 2025</span> </li> <li> <a href="https://techruum.com/this-website-curates-the-best-social-proof-on-the-internet/">This Website Curates the Best Social Proof on the Internet</a> <span class="post-date">June 1, 2025</span> </li> <li> <a href="https://techruum.com/what-zen-and-the-art-of-motorcycle-maintenance-can-teach-us-about-web-design-techruum/">What Zen And The Art Of Motorcycle Maintenance Can Teach Us About Web Design — TechRuum</a> <span class="post-date">May 26, 2025</span> </li> </ul> </div><div id="archives-1" class="wpex-bordered-list sidebar-box widget widget_archive wpex-mb-30 wpex-clr"><div class='widget-title wpex-heading wpex-text-lg wpex-mb-20'>Archives</div> <label class="screen-reader-text" for="archives-dropdown-1">Archives</label> <select id="archives-dropdown-1" name="archive-dropdown"> <option value="">Select Month</option> <option value='https://techruum.com/2025/06/'> June 2025  (4)</span></option> <option value='https://techruum.com/2025/05/'> May 2025  (8)</span></option> <option value='https://techruum.com/2025/04/'> April 2025  (9)</span></option> <option value='https://techruum.com/2025/03/'> March 2025  (7)</span></option> <option value='https://techruum.com/2025/02/'> February 2025  (8)</span></option> <option value='https://techruum.com/2025/01/'> January 2025  (2)</span></option> <option value='https://techruum.com/2024/12/'> December 2024  (9)</span></option> <option value='https://techruum.com/2024/11/'> November 2024  (7)</span></option> <option value='https://techruum.com/2024/10/'> October 2024  (9)</span></option> <option value='https://techruum.com/2024/09/'> September 2024  (10)</span></option> <option value='https://techruum.com/2024/08/'> August 2024  (10)</span></option> <option value='https://techruum.com/2024/07/'> July 2024  (11)</span></option> <option value='https://techruum.com/2024/06/'> June 2024  (8)</span></option> <option value='https://techruum.com/2024/05/'> May 2024  (10)</span></option> <option value='https://techruum.com/2024/04/'> April 2024  (10)</span></option> <option value='https://techruum.com/2024/03/'> March 2024  (10)</span></option> <option value='https://techruum.com/2024/02/'> February 2024  (10)</span></option> <option value='https://techruum.com/2024/01/'> January 2024  (10)</span></option> <option value='https://techruum.com/2023/12/'> December 2023  (10)</span></option> <option value='https://techruum.com/2023/11/'> November 2023  (10)</span></option> <option value='https://techruum.com/2023/10/'> October 2023  (11)</span></option> <option value='https://techruum.com/2023/09/'> September 2023  (10)</span></option> <option value='https://techruum.com/2023/08/'> August 2023  (10)</span></option> <option value='https://techruum.com/2023/07/'> July 2023  (10)</span></option> <option value='https://techruum.com/2023/06/'> June 2023  (10)</span></option> <option value='https://techruum.com/2023/05/'> May 2023  (17)</span></option> <option value='https://techruum.com/2023/04/'> April 2023  (13)</span></option> <option value='https://techruum.com/2023/03/'> March 2023  (22)</span></option> <option value='https://techruum.com/2023/02/'> February 2023  (24)</span></option> <option value='https://techruum.com/2023/01/'> January 2023  (40)</span></option> <option value='https://techruum.com/2022/12/'> December 2022  (74)</span></option> <option value='https://techruum.com/2022/11/'> November 2022  (20)</span></option> <option value='https://techruum.com/2022/10/'> October 2022  (14)</span></option> <option value='https://techruum.com/2022/09/'> September 2022  (15)</span></option> <option value='https://techruum.com/2022/08/'> August 2022  (17)</span></option> <option value='https://techruum.com/2022/07/'> July 2022  (15)</span></option> <option value='https://techruum.com/2022/06/'> June 2022  (12)</span></option> <option value='https://techruum.com/2022/05/'> May 2022  (11)</span></option> <option value='https://techruum.com/2022/04/'> April 2022  (10)</span></option> <option value='https://techruum.com/2022/03/'> March 2022  (2)</span></option> </select> <script> (function() { var dropdown = document.getElementById( "archives-dropdown-1" ); function onSelectChange() { if ( dropdown.options[ dropdown.selectedIndex ].value !== '' ) { document.location.href = this.options[ this.selectedIndex ].value; } } dropdown.onchange = onSelectChange; })(); </script> </div><div id="categories-1" class="wpex-bordered-list sidebar-box widget widget_categories wpex-mb-30 wpex-clr"><div class='widget-title wpex-heading wpex-text-lg wpex-mb-20'>Categories</div><form action="https://techruum.com" method="get"><label class="screen-reader-text" for="cat">Categories</label><select name='cat' id='cat' class='postform'> <option value='-1'>Select Category</option> <option class="level-0" value="1402">2000s  (1)</option> <option class="level-0" value="38">2022 vision awards  (1)</option> <option class="level-0" value="1403">2advanced  (1)</option> <option class="level-0" value="1404">2advanced.com  (1)</option> <option class="level-0" value="1459">404 pages  (1)</option> <option class="level-0" value="1533">Adobe  (1)</option> <option class="level-0" value="1509">ads  (1)</option> <option class="level-0" value="906">AI  (6)</option> <option class="level-0" value="1460">alerts  (1)</option> <option class="level-0" value="24">and How-Tos  (52)</option> <option class="level-0" value="1561">annoying  (1)</option> <option class="level-0" value="133">Apps  (2)</option> <option class="level-0" value="1478">best new tools  (1)</option> <option class="level-0" value="1479">best new tools for designers  (1)</option> <option class="level-0" value="134">best video editing software  (1)</option> <option class="level-0" value="984">best web design resources  (2)</option> <option class="level-0" value="185">best web sites  (1)</option> <option class="level-0" value="1439">best website design  (1)</option> <option class="level-0" value="1440">best websites 2024  (1)</option> <option class="level-0" value="1446">browsers  (1)</option> <option class="level-0" value="43">Bullhorn News  (3)</option> <option class="level-0" value="1382">Business  (4)</option> <option class="level-0" value="34">Careers  (1)</option> <option class="level-0" value="225">Choosing a Font  (1)</option> <option class="level-0" value="1383">client  (1)</option> <option class="level-0" value="1424">code  (2)</option> <option class="level-0" value="1542">cognitive load  (1)</option> <option class="level-0" value="1562">collab  (1)</option> <option class="level-0" value="1563">collaboration  (1)</option> <option class="level-0" value="1468">Compilation  (1)</option> <option class="level-0" value="686">Compilations  (43)</option> <option class="level-0" value="31">Connected Services  (1)</option> <option class="level-0" value="1412">controversial  (1)</option> <option class="level-0" value="1413">conversations  (1)</option> <option class="level-0" value="1550">conversions  (1)</option> <option class="level-0" value="16">cpq  (1)</option> <option class="level-0" value="74">CRM Saas  (1)</option> <option class="level-0" value="11">Customer Success  (6)</option> <option class="level-0" value="54">Customer Webinar  (1)</option> <option class="level-0" value="326">Design  (24)</option> <option class="level-0" value="186">design inspiration  (1)</option> <option class="level-0" value="1392">design style  (1)</option> <option class="level-0" value="1485">design systems  (1)</option> <option class="level-0" value="187">design trends  (1)</option> <option class="level-0" value="1564">designer  (1)</option> <option class="level-0" value="1486">Designers  (1)</option> <option class="level-0" value="912">Development  (9)</option> <option class="level-0" value="1405">digital experiences  (1)</option> <option class="level-0" value="41">Digital Transformation  (2)</option> <option class="level-0" value="1414">discussions  (1)</option> <option class="level-0" value="1447">distractions  (1)</option> <option class="level-0" value="1393">ebay  (1)</option> <option class="level-0" value="143">Editors Pick  (8)</option> <option class="level-0" value="1425">education  (1)</option> <option class="level-0" value="75">Email Saas  (1)</option> <option class="level-0" value="14">Enterprise Agile Planning  (4)</option> <option class="level-0" value="1406">eric jordan  (1)</option> <option class="level-0" value="1461">error  (1)</option> <option class="level-0" value="20">Events  (12)</option> <option class="level-0" value="1551">examples  (1)</option> <option class="level-0" value="1469">fail  (1)</option> <option class="level-0" value="144">Featured  (8)</option> <option class="level-0" value="1534">Figma  (2)</option> <option class="level-0" value="1535">figma sites  (1)</option> <option class="level-0" value="1407">flash  (1)</option> <option class="level-0" value="1408">flash intro  (1)</option> <option class="level-0" value="1470">flops  (1)</option> <option class="level-0" value="49">flow metrics  (1)</option> <option class="level-0" value="226">font  (1)</option> <option class="level-0" value="68">Fonts  (17)</option> <option class="level-0" value="1536">Framer  (1)</option> <option class="level-0" value="123">free Christmas patterns  (1)</option> <option class="level-0" value="124">free illustrations  (1)</option> <option class="level-0" value="125">Free patterns  (1)</option> <option class="level-0" value="122">Freebies  (1)</option> <option class="level-0" value="1384">freelance  (1)</option> <option class="level-0" value="1510">frustration  (1)</option> <option class="level-0" value="1385">Funny  (2)</option> <option class="level-0" value="1426">git wrapped  (1)</option> <option class="level-0" value="1427">github  (1)</option> <option class="level-0" value="1471">Google  (1)</option> <option class="level-0" value="1521">hmaburger icon  (1)</option> <option class="level-0" value="76">Hubspot  (1)</option> <option class="level-0" value="35">Human Resources  (1)</option> <option class="level-0" value="162">human-centered design  (1)</option> <option class="level-0" value="55">IBM  (1)</option> <option class="level-0" value="25">Industry Trends & Insights  (26)</option> <option class="level-0" value="10">Innovation Management  (9)</option> <option class="level-0" value="30">insidesales  (2)</option> <option class="level-0" value="60">Inspiration  (33)</option> <option class="level-0" value="1522">jakob nielsen  (1)</option> <option class="level-0" value="1428">languages  (1)</option> <option class="level-0" value="58">Lean Portfolio Management  (1)</option> <option class="level-0" value="36">Life at Planview  (4)</option> <option class="level-0" value="77">mailchimp  (1)</option> <option class="level-0" value="1448">meditation  (1)</option> <option class="level-0" value="1523">menu  (1)</option> <option class="level-0" value="1449">mindfulness  (1)</option> <option class="level-0" value="1462">mistakes  (1)</option> <option class="level-0" value="98">multipurpose themes  (3)</option> <option class="level-0" value="530">multipurpose WordPress Themes  (1)</option> <option class="level-0" value="155">new apps  (1)</option> <option class="level-0" value="1394">New font  (1)</option> <option class="level-0" value="188">new sites  (1)</option> <option class="level-0" value="1480">new tools  (1)</option> <option class="level-0" value="156">new tools. new downloads  (1)</option> <option class="level-0" value="396">News  (15)</option> <option class="level-0" value="78">newsletter saas  (1)</option> <option class="level-0" value="1524">off screen menus  (1)</option> <option class="level-0" value="37">Open Jobs  (3)</option> <option class="level-0" value="1450">opera  (1)</option> <option class="level-0" value="1451">opera air  (1)</option> <option class="level-0" value="1511">paywall  (1)</option> <option class="level-0" value="15">People of Planview  (12)</option> <option class="level-0" value="3">Photography  (2)</option> <option class="level-0" value="44">Planview  (1)</option> <option class="level-0" value="57">planview accelerate  (1)</option> <option class="level-0" value="45">Planview Culture  (4)</option> <option class="level-0" value="39">planview customers  (1)</option> <option class="level-0" value="46">Planview Jobs  (4)</option> <option class="level-0" value="56">Planview PSA  (1)</option> <option class="level-0" value="40">planview solution success  (1)</option> <option class="level-0" value="1395">playbook  (1)</option> <option class="level-0" value="145">plugins  (5)</option> <option class="level-0" value="1386">pop  (1)</option> <option class="level-0" value="200">Portfolio  (1)</option> <option class="level-0" value="201">Portfolio Website  (1)</option> <option class="level-0" value="28">Product Lifecycle Management  (5)</option> <option class="level-0" value="27">Product Portfolio Management  (6)</option> <option class="level-0" value="50">product value stream  (1)</option> <option class="level-0" value="26">Products  (4)</option> <option class="level-0" value="17">Professional Services  (2)</option> <option class="level-0" value="8">Professional Services Automation  (5)</option> <option class="level-0" value="1543">progressive  (1)</option> <option class="level-0" value="9">Project Portfolio Management  (7)</option> <option class="level-0" value="51">project to product  (1)</option> <option class="level-0" value="47">Project to Product Shift  (1)</option> <option class="level-0" value="18">quote to cash  (1)</option> <option class="level-0" value="19">quote to cash vs cpq  (1)</option> <option class="level-0" value="1415">reddit  (1)</option> <option class="level-0" value="1416">reddit answers  (1)</option> <option class="level-0" value="1487">report  (1)</option> <option class="level-0" value="53">Resource Management  (2)</option> <option class="level-0" value="73">Resources  (35)</option> <option class="level-0" value="1208">retro  (1)</option> <option class="level-0" value="1512">revenue  (1)</option> <option class="level-0" value="150">Reviews  (1)</option> <option class="level-0" value="32">Services Organizations  (1)</option> <option class="level-0" value="1517">shapes  (1)</option> <option class="level-0" value="1216">Showcase  (1)</option> <option class="level-0" value="954">Social Media  (1)</option> <option class="level-0" value="1552">social proof  (1)</option> <option class="level-0" value="338">Sponsored  (8)</option> <option class="level-0" value="21">Staffing Technology  (27)</option> <option class="level-0" value="13">Strategic Planning  (4)</option> <option class="level-0" value="1488">survey  (1)</option> <option class="level-0" value="59">Tech  (14)</option> <option class="level-0" value="42">Technology Portfolio Management  (1)</option> <option class="level-0" value="1553">testimonials  (1)</option> <option class="level-0" value="178">themes  (2)</option> <option class="level-0" value="22">Tips  (52)</option> <option class="level-0" value="113">Tools  (9)</option> <option class="level-0" value="114">tools for web designers  (3)</option> <option class="level-0" value="61">Trends  (10)</option> <option class="level-0" value="23">Tricks  (52)</option> <option class="level-0" value="227">Typefaces and Fonts  (1)</option> <option class="level-0" value="224">Typography  (2)</option> <option class="level-0" value="163">UCD  (1)</option> <option class="level-0" value="372">UI  (2)</option> <option class="level-0" value="1">Uncategorized  (200)</option> <option class="level-0" value="1463">Usability  (2)</option> <option class="level-0" value="164">user centered design  (1)</option> <option class="level-0" value="165">user experience  (2)</option> <option class="level-0" value="1513">users  (1)</option> <option class="level-0" value="161">UX  (9)</option> <option class="level-0" value="1544">uxp  (1)</option> <option class="level-0" value="48">Value Stream Management  (3)</option> <option class="level-0" value="135">Video  (1)</option> <option class="level-0" value="136">video apps  (1)</option> <option class="level-0" value="137">video editing  (1)</option> <option class="level-0" value="29">Vision and Trends  (2)</option> <option class="level-0" value="52">vsm  (1)</option> <option class="level-0" value="864">Web  (6)</option> <option class="level-0" value="1409">web deisgn  (1)</option> <option class="level-0" value="62">Web Design  (11)</option> <option class="level-0" value="115">Web Design Resources  (2)</option> <option class="level-0" value="985">Web Design Tools  (2)</option> <option class="level-0" value="189">web design trends  (1)</option> <option class="level-0" value="1387">web designer  (1)</option> <option class="level-0" value="1489">Web Designers  (1)</option> <option class="level-0" value="1429">webdev  (1)</option> <option class="level-0" value="1537">website design  (1)</option> <option class="level-0" value="1514">Websites  (1)</option> <option class="level-0" value="1452">wellness  (1)</option> <option class="level-0" value="484">woocommerce  (1)</option> <option class="level-0" value="64">WooCommerce themes  (2)</option> <option class="level-0" value="63">WordPress  (16)</option> <option class="level-0" value="146">wordpress plugins  (3)</option> <option class="level-0" value="99">wordpress themes  (7)</option> <option class="level-0" value="1388">work  (1)</option> <option class="level-0" value="12">Work Management for Teams  (3)</option> </select> </form><script> (function() { var dropdown = document.getElementById( "cat" ); function onCatChange() { if ( dropdown.options[ dropdown.selectedIndex ].value > 0 ) { dropdown.parentNode.submit(); } } dropdown.onchange = onCatChange; })(); </script> </div></div> </aside> </div> </main> <footer id="footer" class="site-footer wpex-surface-dark wpex-print-hidden"> <div id="footer-inner" class="site-footer-inner container wpex-pt-40 wpex-clr"> <div id="footer-widgets" class="wpex-row wpex-clr gap-60"> <div class="footer-box span_1_of_3 col col-1"><div id="wpex_info_widget-1" class="footer-widget widget wpex-pb-40 wpex-clr widget_wpex_info_widget"><div class='widget-title wpex-heading wpex-text-lg wpex-mb-20'>Business Info</div><ul class="wpex-info-widget wpex-last-mb-0"><li class="wpex-info-widget-address wpex-flex wpex-mb-10"><div class="wpex-info-widget-icon wpex-mr-10"><span class="wpex-icon--w wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 32"><path d="M13.714 11.429q0-1.893-1.339-3.232t-3.232-1.339-3.232 1.339-1.339 3.232 1.339 3.232 3.232 1.339 3.232-1.339 1.339-3.232zM18.286 11.429q0 1.946-0.589 3.196l-6.5 13.821q-0.286 0.589-0.848 0.929t-1.205 0.339-1.205-0.339-0.83-0.929l-6.518-13.821q-0.589-1.25-0.589-3.196 0-3.786 2.679-6.464t6.464-2.679 6.464 2.679 2.679 6.464z"></path></svg></span></div><div class="wpex-info-widget-data wpex-flex-grow wpex-last-mb-0"><p>Queens County, New York, United States.<br /> WhatsApp ONLY</p> </div></li><li class="wpex-info-widget-phone wpex-flex wpex-mb-10"><div class="wpex-info-widget-icon wpex-mr-10"><span class="wpex-icon--w wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z"/></svg></span></div><div class="wpex-info-widget-data wpex-flex-grow"><a href="tel:+1 (310) 667-7564">+1 (310) 667-7564</a></div></li></ul></div><div id="wpex_info_widget-6" class="footer-widget widget wpex-pb-40 wpex-clr widget_wpex_info_widget"><ul class="wpex-info-widget wpex-last-mb-0"><li class="wpex-info-widget-address wpex-flex wpex-mb-10"><div class="wpex-info-widget-icon wpex-mr-10"><span class="wpex-icon--w wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 32"><path d="M13.714 11.429q0-1.893-1.339-3.232t-3.232-1.339-3.232 1.339-1.339 3.232 1.339 3.232 3.232 1.339 3.232-1.339 1.339-3.232zM18.286 11.429q0 1.946-0.589 3.196l-6.5 13.821q-0.286 0.589-0.848 0.929t-1.205 0.339-1.205-0.339-0.83-0.929l-6.518-13.821q-0.589-1.25-0.589-3.196 0-3.786 2.679-6.464t6.464-2.679 6.464 2.679 2.679 6.464z"></path></svg></span></div><div class="wpex-info-widget-data wpex-flex-grow wpex-last-mb-0"><p>WhatsApp ONLY</p> </div></li><li class="wpex-info-widget-phone wpex-flex wpex-mb-10"><div class="wpex-info-widget-icon wpex-mr-10"><span class="wpex-icon--w wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64C0 311.4 200.6 512 448 512c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368C234.3 334.7 177.3 277.7 144 207.3L193.3 167c13.7-11.2 18.4-30 11.6-46.3l-40-96z"/></svg></span></div><div class="wpex-info-widget-data wpex-flex-grow"><a href="tel:+234 813-508-8121">+234 813-508-8121</a></div></li></ul></div></div> <div class="footer-box span_1_of_3 col col-2"><div id="wpex_about-2" class="footer-widget widget wpex-pb-40 wpex-clr widget_wpex_about"><div class='widget-title wpex-heading wpex-text-lg wpex-mb-20'>About TechRuum</div><div class="wpex-about-widget wpex-clr"><div class="wpex-about-widget-description wpex-last-mb-0 wpex-clr">TechRuum Inc is a world class information technology company committed to use the best business practices to help companies develop the capabilities needed to compete in the global market.</div></div></div></div> <div class="footer-box span_1_of_3 col col-3"><div id="wpex_fontawesome_social_widget-1" class="footer-widget widget wpex-pb-40 wpex-clr widget_wpex_fontawesome_social_widget"><div class='widget-title wpex-heading wpex-text-lg wpex-mb-20'>Follow Us</div><style>#wpex_fontawesome_social_widget-1 .wpex-social-btn{font-size:18px;border-radius:4px;}</style><div class="wpex-fa-social-widget textleft"><div class="desc wpex-last-mb-0 wpex-mb-20 wpex-clr">Don't forget to follow us via our various social media profiles and keep up with the latest scoop about us.</div><ul class="wpex-list-none wpex-m-0 wpex-last-mr-0 wpex-text-md"><li class="wpex-inline-block wpex-mb-5 wpex-mr-5"><a href="https://www.linkedin.com/company/techruum" class="wpex-linkedin wpex-social-btn wpex-social-btn-flat wpex-social-bg" rel="noopener noreferrer" target="_blank"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M100.3 448H7.4V148.9h92.9zM53.8 108.1C24.1 108.1 0 83.5 0 53.8a53.8 53.8 0 0 1 107.6 0c0 29.7-24.1 54.3-53.8 54.3zM447.9 448h-92.7V302.4c0-34.7-.7-79.2-48.3-79.2-48.3 0-55.7 37.7-55.7 76.7V448h-92.8V148.9h89.1v40.8h1.3c12.4-23.5 42.7-48.3 87.9-48.3 94 0 111.3 61.9 111.3 142.3V448z"/></svg></span><span class="screen-reader-text">LinkedIn</span></a></li><li class="wpex-inline-block wpex-mb-5 wpex-mr-5"><a href="https://wa.me/message/247EOXVZ2T22J1" class="wpex-whatsapp wpex-social-btn wpex-social-btn-flat wpex-social-bg" rel="noopener noreferrer" target="_blank"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7 .9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z"/></svg></span><span class="screen-reader-text">Whatsapp</span></a></li><li class="wpex-inline-block wpex-mb-5 wpex-mr-5"><a href="https://www.facebook.com/TechRuum-114932764555254" class="wpex-facebook wpex-social-btn wpex-social-btn-flat wpex-social-bg" rel="noopener noreferrer" target="_blank"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M512 256C512 114.6 397.4 0 256 0S0 114.6 0 256C0 376 82.7 476.8 194.2 504.5V334.2H141.4V256h52.8V222.3c0-87.1 39.4-127.5 125-127.5c16.2 0 44.2 3.2 55.7 6.4V172c-6-.6-16.5-1-29.6-1c-42 0-58.2 15.9-58.2 57.2V256h83.6l-14.4 78.2H287V510.1C413.8 494.8 512 386.9 512 256h0z"/></svg></span><span class="screen-reader-text">Facebook</span></a></li><li class="wpex-inline-block wpex-mb-5 wpex-mr-5"><a href="https://instagram.com/techruum" class="wpex-instagram wpex-social-btn wpex-social-btn-flat wpex-social-bg" rel="noopener noreferrer" target="_blank"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9 287.7 141 224.1 141zm0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7 74.7 33.5 74.7 74.7-33.6 74.7-74.7 74.7zm146.4-194.3c0 14.9-12 26.8-26.8 26.8-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8 26.8 12 26.8 26.8zm76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9-26.2-26.2-58-34.4-93.9-36.2-37-2.1-147.9-2.1-184.9 0-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9 1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0 35.9-1.7 67.7-9.9 93.9-36.2 26.2-26.2 34.4-58 36.2-93.9 2.1-37 2.1-147.8 0-184.8zM398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6 29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6 11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1z"/></svg></span><span class="screen-reader-text">Instagram</span></a></li><li class="wpex-inline-block wpex-mb-5 wpex-mr-5"><a href="https://twitter.com/TechRuum" class="wpex-twitter wpex-social-btn wpex-social-btn-flat wpex-social-bg" rel="noopener noreferrer" target="_blank"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg></span><span class="screen-reader-text">Twitter (deprecated)</span></a></li><li class="wpex-inline-block wpex-mb-5 wpex-mr-5"><a href="https://techruum.com/feed/" class="wpex-rss wpex-social-btn wpex-social-btn-flat wpex-social-bg" rel="noopener noreferrer" target="_blank"><span class="wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M0 64C0 46.3 14.3 32 32 32c229.8 0 416 186.2 416 416c0 17.7-14.3 32-32 32s-32-14.3-32-32C384 253.6 226.4 96 32 96C14.3 96 0 81.7 0 64zM0 416a64 64 0 1 1 128 0A64 64 0 1 1 0 416zM32 160c159.1 0 288 128.9 288 288c0 17.7-14.3 32-32 32s-32-14.3-32-32c0-123.7-100.3-224-224-224c-17.7 0-32-14.3-32-32s14.3-32 32-32z"/></svg></span><span class="screen-reader-text">RSS</span></a></li></ul></div></div></div> </div> </div> </footer> <div id="footer-bottom" class="wpex-py-20 wpex-surface-dark wpex-bg-gray-900 wpex-text-center wpex-print-hidden"> <div id="footer-bottom-inner" class="container"><div class="footer-bottom-flex wpex-flex wpex-flex-col wpex-gap-10"> <div id="copyright" class="wpex-last-mb-0">© 2025 <a href="https://techruum.com">TechRuum Inc.</a> - All Rights Reserved</div> <nav id="footer-bottom-menu" aria-label="Footer menu"><div class="menu-footer-container"><ul id="menu-footer" class="menu wpex-flex wpex-flex-wrap wpex-gap-x-20 wpex-gap-y-5 wpex-m-0 wpex-list-none wpex-justify-center"><li id="menu-item-136" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-136"><a href="https://techruum.com/submit-a-project/">Submit a project</a></li> <li id="menu-item-263" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-263"><a href="https://techruum.com/cookies-policy/">Cookies Policy</a></li> <li id="menu-item-297" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-297"><a rel="privacy-policy" href="https://techruum.com/privacy-policy/">Privacy Policy</a></li> <li id="menu-item-264" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-264"><a href="https://techruum.com/terms-of-use/">Terms Of Use</a></li> <li id="menu-item-265" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-265"><a href="https://techruum.com/terms-and-conditions/">Terms & Conditions</a></li> <li id="menu-item-262" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-262"><a href="https://techruum.com/return-and-refund-policy/">Refund Policy</a></li> </ul></div></nav> </div></div> </div> </div> </div> <div id="mobile-menu-alternative" class="wpex-hidden"><ul id="menu-main-1" class="dropdown-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-131"><a href="https://techruum.com/"><span class="link-inner">Home</span></a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-209"><a href="https://techruum.com/about-us/"><span class="link-inner">About us</span></a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-134"><a href="https://techruum.com/services/"><span class="link-inner">Services</span></a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-1244"><a href="https://techruum.com/jobs/"><span class="link-inner">Careers</span></a></li> <li class="menu-item menu-item-type-post_type menu-item-object-page current_page_parent menu-item-135"><a href="https://techruum.com/blog/"><span class="link-inner">Blog</span></a></li> <li class="menu-button menu-item menu-item-type-post_type menu-item-object-page menu-item-133"><a href="https://techruum.com/submit-a-project/"><span class="link-inner">Submit a project</span></a></li> </ul></div> <div class="wpex-hidden wpex-sm-block"> <a href="#top" id="site-scroll-top" class="wpex-z-popover wpex-flex wpex-items-center wpex-justify-center wpex-fixed wpex-rounded-full wpex-text-center wpex-box-content wpex-transition-all wpex-duration-200 wpex-bottom-0 wpex-right-0 wpex-mr-25 wpex-mb-25 wpex-no-underline wpex-print-hidden wpex-surface-2 wpex-text-4 wpex-hover-bg-accent wpex-invisible wpex-opacity-0"><span class="wpex-flex wpex-icon" aria-hidden="true"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path d="M64 80c-8.8 0-16 7.2-16 16l0 320c0 8.8 7.2 16 16 16l320 0c8.8 0 16-7.2 16-16l0-320c0-8.8-7.2-16-16-16L64 80zM0 96C0 60.7 28.7 32 64 32l320 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm224 64c6.7 0 13 2.8 17.6 7.7l104 112c6.5 7 8.2 17.2 4.4 25.9s-12.5 14.4-22 14.4l-208 0c-9.5 0-18.2-5.7-22-14.4s-2.1-18.9 4.4-25.9l104-112c4.5-4.9 10.9-7.7 17.6-7.7z"/></svg></span><span class="screen-reader-text">Back To Top</span></a> </div> <nav class="mobile-toggle-nav wpex-mobile-menu mobile-toggle-nav--animate wpex-surface-1 wpex-hidden wpex-text-2 wpex-togglep-absolute wpex-absolute wpex-top-100 wpex-left-0 wpex-w-100 wpex-z-dropdown" aria-label="Mobile menu" data-wpex-append-to="#site-header"> <div class="mobile-toggle-nav-inner container wpex-overflow-y-auto wpex-hide-scrollbar wpex-overscroll-contain"> <ul class="mobile-toggle-nav-ul wpex-h-auto wpex-leading-inherit wpex-list-none wpex-my-0 wpex-mx-auto"></ul> </div> </nav> <script type="speculationrules"> {"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/Total\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]} </script> <div id="wa"></div><script src="https://techruum.com/wp-content/plugins/whatsapp-for-wordpress/assets/dist/js/njt-whatsapp.js?ver=3.7" id="nta-wa-libs-js"></script> <script id="nta-js-global-js-extra"> var njt_wa_global = {"ajax_url":"https:\/\/techruum.com\/wp-admin\/admin-ajax.php","nonce":"ce244a9639","defaultAvatarSVG":"<svg width=\"48px\" height=\"48px\" class=\"nta-whatsapp-default-avatar\" version=\"1.1\" id=\"Layer_1\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\"\n viewBox=\"0 0 512 512\" style=\"enable-background:new 0 0 512 512;\" xml:space=\"preserve\">\n <path style=\"fill:#EDEDED;\" d=\"M0,512l35.31-128C12.359,344.276,0,300.138,0,254.234C0,114.759,114.759,0,255.117,0\n S512,114.759,512,254.234S395.476,512,255.117,512c-44.138,0-86.51-14.124-124.469-35.31L0,512z\"\/>\n <path style=\"fill:#55CD6C;\" d=\"M137.71,430.786l7.945,4.414c32.662,20.303,70.621,32.662,110.345,32.662\n c115.641,0,211.862-96.221,211.862-213.628S371.641,44.138,255.117,44.138S44.138,137.71,44.138,254.234\n c0,40.607,11.476,80.331,32.662,113.876l5.297,7.945l-20.303,74.152L137.71,430.786z\"\/>\n <path style=\"fill:#FEFEFE;\" d=\"M187.145,135.945l-16.772-0.883c-5.297,0-10.593,1.766-14.124,5.297\n c-7.945,7.062-21.186,20.303-24.717,37.959c-6.179,26.483,3.531,58.262,26.483,90.041s67.09,82.979,144.772,105.048\n c24.717,7.062,44.138,2.648,60.028-7.062c12.359-7.945,20.303-20.303,22.952-33.545l2.648-12.359\n c0.883-3.531-0.883-7.945-4.414-9.71l-55.614-25.6c-3.531-1.766-7.945-0.883-10.593,2.648l-22.069,28.248\n c-1.766,1.766-4.414,2.648-7.062,1.766c-15.007-5.297-65.324-26.483-92.69-79.448c-0.883-2.648-0.883-5.297,0.883-7.062\n l21.186-23.834c1.766-2.648,2.648-6.179,1.766-8.828l-25.6-57.379C193.324,138.593,190.676,135.945,187.145,135.945\"\/>\n <\/svg>","defaultAvatarUrl":"https:\/\/techruum.com\/wp-content\/plugins\/whatsapp-for-wordpress\/assets\/img\/whatsapp_logo.svg","timezone":"+00:00","i18n":{"online":"Online","offline":"Offline"},"urlSettings":{"onDesktop":"api","onMobile":"api","openInNewTab":"ON"}}; </script> <script src="https://techruum.com/wp-content/plugins/whatsapp-for-wordpress/assets/js/whatsapp-button.js?ver=3.7" id="nta-js-global-js"></script> <script src="https://techruum.com/wp-content/themes/Total/assets/js/frontend/social-share.min.js?ver=6.3" id="wpex-social-share-js" defer data-wp-strategy="defer"></script> <script id="nta-js-popup-js-extra"> var njt_wa = {"gdprStatus":"1","accounts":[{"accountId":1694,"accountName":"Product Development Service","avatar":"https:\/\/techruum.com\/wp-content\/uploads\/2025\/04\/support1.jpg","number":"+2348135088121","title":"For Web design, software, mobile app & other dev service","predefinedText":"Hello, TechRuum Team, I will like you to help me develop a..... ","willBeBackText":"I will be back in [njwa_time_work]","dayOffsText":"I will be back soon","isAlwaysAvailable":"ON","daysOfWeekWorking":{"sunday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"monday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"tuesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"wednesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"thursday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"friday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"saturday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]}}},{"accountId":1699,"accountName":"Marketing Service","avatar":"https:\/\/techruum.com\/wp-content\/uploads\/2025\/04\/support2.png","number":"+2348135088121","title":"For Digital Marketing, SEO, SEM, & other Viral Ads services","predefinedText":"Hello, TechRuum Marketing Team, I will like you to help me with..... ","willBeBackText":"I will be back in [njwa_time_work]","dayOffsText":"I will be back soon","isAlwaysAvailable":"ON","daysOfWeekWorking":{"sunday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"monday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"tuesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"wednesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"thursday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"friday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"saturday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]}}},{"accountId":1701,"accountName":"Portfolio Management","avatar":"https:\/\/techruum.com\/wp-content\/uploads\/2025\/04\/support4.jpg","number":"+13106677564","title":"For Cryptocurrencies, Forex, and other CFD's","predefinedText":"Hello, TechRuum Portfolio Management Team, I will like to subscribe to your portfolio management service....","willBeBackText":"I will be back in [njwa_time_work]","dayOffsText":"I will be back soon","isAlwaysAvailable":"ON","daysOfWeekWorking":{"sunday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"monday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"tuesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"wednesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"thursday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"friday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"saturday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]}}},{"accountId":1700,"accountName":"Tech Consultation","avatar":"https:\/\/techruum.com\/wp-content\/uploads\/2025\/04\/support3.jpg","number":"+2348135088121","title":"For 1-1 consultation concerning your company growth","predefinedText":"Hello, TechRuum Consultation Team, I will like to book a 1-1 consultation with you concerning my..... ","willBeBackText":"I will be back in [njwa_time_work]","dayOffsText":"I will be back soon","isAlwaysAvailable":"ON","daysOfWeekWorking":{"sunday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"monday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"tuesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"wednesday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"thursday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"friday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]},"saturday":{"isWorkingOnDay":"OFF","workHours":[{"startTime":"08:00","endTime":"17:30"}]}}}],"options":{"display":{"displayCondition":"showAllPage","displayPostCondition":"showAllPost","includePages":[],"excludePages":[],"includePosts":[],"excludePosts":[],"showOnDesktop":"ON","showOnMobile":"ON","time_symbols":"h:m"},"styles":{"title":"Start a Conversation","responseText":"We typically replies in a few minutes on workdays 24\/7.","description":"Hello! Kindly click one of our department below to chat with us on <strong>WhatsApp<\/strong>","backgroundColor":"#003fff","textColor":"#ffffff","titleSize":"18","accountNameSize":"14","descriptionTextSize":"12","regularTextSize":"11","scrollHeight":"500","isShowScroll":"ON","isShowResponseText":"OFF","isShowPoweredBy":"OFF","btnLabel":"Welcome to TechRuum Official Support. <\/br><\/br>Need Help? <strong>Chat with us<\/strong>","btnLabelWidth":"182","btnPosition":"right","btnLeftDistance":"30","btnRightDistance":"30","btnBottomDistance":"70","isShowBtnLabel":"ON","isShowGDPR":"ON","gdprContent":"Please accept our <a href=\"https:\/\/techruum.com\/privacy-policy\/\" target=\"_blank\" rel=\"noopener\">privacy policy<\/a> first to start a conversation.","widgetType":"expandable"},"analytics":{"enabledGoogle":"ON","enabledFacebook":"OFF","enabledGoogleGA4":"ON"},"accounts":{"hideOfflineAgents":"OFF"}}}; </script> <script src="https://techruum.com/wp-content/plugins/whatsapp-for-wordpress/assets/js/whatsapp-popup.js?ver=3.7" id="nta-js-popup-js"></script> <script></script> </body> </html> <!-- Page supported by LiteSpeed Cache 7.1 on 2025-06-16 19:32:30 -->