Unlocking the Web: A Comprehensive Guide to Viewing Source Code

The internet, a vast and intricate network of information, applications, and experiences, often feels like magic. We interact with websites daily, marveling at their design, functionality, and the seamless flow of information. But behind the polished interfaces and engaging content lies a world of code – the very foundation upon which these digital wonders are built. Understanding how to view source code is like gaining access to the architect’s blueprints, allowing you to peek behind the curtain and decipher the underlying mechanics of any webpage.

This comprehensive guide will delve into the various methods and techniques for viewing source code, empowering you with the knowledge to explore, learn, and even troubleshoot the websites you frequent. Whether you’re a budding web developer, a curious student, or simply someone who wants to understand how things work, this guide will provide you with the tools and insights you need.

Why View Source Code?

Before we dive into the how-to, let’s explore the reasons why viewing source code can be beneficial:

  • Learning Web Development: Examining the source code of well-designed websites is an invaluable learning experience for aspiring web developers. You can observe how experienced developers structure their HTML, implement CSS styles, and utilize JavaScript for interactive elements. By studying real-world examples, you can gain practical insights into best practices and coding techniques.
  • Debugging and Troubleshooting: When encountering errors or unexpected behavior on a website, viewing the source code can help you pinpoint the root cause. By inspecting the HTML structure, CSS rules, and JavaScript code, you can identify potential issues such as broken links, incorrect styling, or faulty scripts.
  • Understanding Website Functionality: Source code reveals the underlying mechanisms that power a website. You can uncover how forms are processed, how data is retrieved, and how interactive elements respond to user actions. This knowledge can be particularly useful for understanding complex web applications.
  • Analyzing Website Structure and Content: Viewing the source code allows you to analyze the website’s structure, identify heading tags, and assess the use of semantic HTML. You can also examine the metadata, such as title tags and meta descriptions, which are crucial for search engine optimization (SEO).
  • Extracting Information: Sometimes, information that is not readily visible on a webpage can be found within the source code. This might include hidden links, contact information, or embedded data.
  • Security Auditing: Examining the source code can help identify potential security vulnerabilities, such as exposed API keys, insecure scripts, or cross-site scripting (XSS) vulnerabilities. This is particularly important for developers and security professionals who are responsible for maintaining website security.
  • Confirming Accessibility: By viewing the source code, you can verify whether a website adheres to accessibility standards. Checking for proper use of ARIA attributes, alt text for images, and semantic HTML elements can help ensure that the website is accessible to users with disabilities.

Methods for Viewing Source Code

There are several methods for viewing the source code of a website, each with its own advantages and disadvantages. Let’s explore the most common techniques:

1. Using Browser Developer Tools

Modern web browsers come equipped with powerful developer tools that provide a wealth of information about a website, including its source code. These tools offer a convenient and comprehensive way to inspect the HTML, CSS, and JavaScript that make up a webpage.

Accessing Developer Tools

The method for accessing developer tools varies slightly depending on the browser you are using:

  • Google Chrome:
    • Right-click anywhere on the webpage and select “Inspect” or “Inspect Element.”
    • Alternatively, press Ctrl+Shift+I (Windows/Linux) or Cmd+Option+I (macOS).
    • You can also access the developer tools through the Chrome menu (three vertical dots in the upper-right corner) by navigating to “More Tools” and then “Developer Tools.”
  • Mozilla Firefox:
    • Right-click anywhere on the webpage and select “Inspect.”
    • Alternatively, press Ctrl+Shift+I (Windows/Linux) or Cmd+Option+I (macOS).
    • You can also access the developer tools through the Firefox menu (three horizontal lines in the upper-right corner) by navigating to “Web Developer” and then “Inspect.”
  • Microsoft Edge:
    • Right-click anywhere on the webpage and select “Inspect.”
    • Alternatively, press Ctrl+Shift+I (Windows/Linux) or Cmd+Option+I (macOS).
    • You can also access the developer tools through the Edge menu (three horizontal dots in the upper-right corner) by navigating to “More Tools” and then “Developer Tools.”
  • Safari:
    • Safari requires you to enable the “Develop” menu in the menu bar. To do this, go to Safari Preferences (Cmd+,), click on the “Advanced” tab, and check the box labeled “Show Develop menu in menu bar.”
    • Once the Develop menu is enabled, you can access the developer tools by right-clicking on the webpage and selecting “Inspect Element” or by pressing Cmd+Option+I.

Navigating the Developer Tools

Once the developer tools are open, you will see a panel that typically appears at the bottom or side of the browser window. The developer tools panel is divided into several tabs, each providing different functionalities:

  • Elements: This tab displays the HTML structure of the webpage in a hierarchical tree view. You can expand and collapse elements to navigate the DOM (Document Object Model). You can also edit HTML elements directly within this tab to see how changes affect the webpage in real-time. This is useful for testing different layouts and styles.
  • Console: The Console tab is used for displaying error messages, warnings, and other information generated by the browser or by JavaScript code. It is also a powerful tool for debugging JavaScript code and executing JavaScript commands directly in the browser.
  • Sources: This tab displays the source code files that make up the webpage, including HTML, CSS, JavaScript, and images. You can view and edit these files directly within the developer tools. This is particularly useful for debugging JavaScript code and making changes to CSS styles.
  • Network: The Network tab displays a list of all the resources that the browser has requested from the server, including HTML, CSS, JavaScript, images, and other files. This tab is useful for analyzing the performance of a website and identifying potential bottlenecks. You can see how long each resource takes to load and identify any resources that are taking too long to download.
  • Performance: The Performance tab allows you to record and analyze the performance of a webpage. You can use this tab to identify performance bottlenecks and optimize the webpage for faster loading times.
  • Application: This tab provides tools for inspecting and managing the application state of a webpage, including cookies, local storage, session storage, and IndexedDB. This is useful for debugging web applications that store data on the client-side.
  • Security: The Security tab provides information about the security of a webpage, including the SSL certificate and any potential security vulnerabilities.

Viewing the HTML Source Code in the Elements Tab

The easiest way to view the HTML source code of a webpage using developer tools is to use the Elements tab:

  1. Open the developer tools as described above.
  2. Select the “Elements” tab.
  3. The HTML source code of the webpage will be displayed in a hierarchical tree view.
  4. You can expand and collapse elements to navigate the DOM.
  5. You can also right-click on an element and select “Edit as HTML” to modify the HTML code directly.

Using “Inspect Element” for Specific Sections

A particularly useful feature of the developer tools is the ability to inspect a specific element on the page. This allows you to quickly locate the corresponding HTML code for that element.

  1. Right-click on the element you want to inspect.
  2. Select “Inspect” or “Inspect Element” from the context menu.
  3. The developer tools will open, and the Elements tab will be selected with the corresponding HTML code highlighted.

2. Using the “View Page Source” Option

All major web browsers provide a built-in option to view the complete HTML source code of a webpage. This method is simple and straightforward, but it only displays the HTML code and does not provide the advanced debugging and editing features of the developer tools.

Accessing “View Page Source”

The method for accessing the “View Page Source” option is similar across different browsers:

  • Google Chrome:
    • Right-click anywhere on the webpage and select “View Page Source.”
    • Alternatively, press Ctrl+U (Windows/Linux/macOS).
    • You can also access it through the Chrome menu (three vertical dots) -> More Tools -> Developer Tools, and then navigate to the Elements tab.
  • Mozilla Firefox:
    • Right-click anywhere on the webpage and select “View Page Source.”
    • Alternatively, press Ctrl+U (Windows/Linux/macOS).
    • You can also access it through the Firefox menu (three horizontal lines) -> Web Developer -> Page Source.
  • Microsoft Edge:
    • Right-click anywhere on the webpage and select “View Page Source.”
    • Alternatively, press Ctrl+U (Windows/Linux/macOS).
    • You can also access it through the Edge menu (three horizontal dots) -> More Tools -> Developer Tools, and then navigate to the Elements tab.
  • Safari:
    • Right-click anywhere on the webpage and select “Show Page Source.”
    • Alternatively, press Cmd+Option+U (macOS).
    • You can also access it through the Develop menu -> Show Page Source. (Remember to enable the Develop menu in Safari Preferences first).

Understanding the Output

When you select “View Page Source,” the browser will open a new tab or window displaying the complete HTML source code of the webpage. The code will be displayed as plain text, with HTML tags, attributes, and content. This method shows the original source code sent by the server, before any JavaScript has modified it.

3. Using Browser Extensions

Several browser extensions are available that provide additional features for viewing and analyzing source code. These extensions can offer features such as syntax highlighting, code formatting, and the ability to download source code files.

Examples of Useful Extensions

  • Web Developer (Chrome and Firefox): This extension provides a comprehensive set of tools for web developers, including features for viewing source code, disabling JavaScript, editing CSS, and validating HTML.
  • View Source (Chrome): This extension provides a simple and convenient way to view the source code of a webpage. It adds a button to the browser toolbar that allows you to quickly access the source code with a single click.
  • HTML Validator (Chrome and Firefox): This extension validates the HTML code of a webpage and identifies any errors or warnings. This can be useful for ensuring that your HTML code is valid and conforms to web standards.

Installing and Using Extensions

Installing and using browser extensions is typically a straightforward process:

  1. Search for the desired extension in the Chrome Web Store (for Chrome) or the Firefox Add-ons website (for Firefox).
  2. Click on the “Add to Chrome” or “Add to Firefox” button to install the extension.
  3. Follow the on-screen instructions to complete the installation.
  4. Once the extension is installed, it will typically add a button to the browser toolbar or a menu item to the context menu.
  5. Click on the button or select the menu item to access the extension’s features.

4. Using Online Source Code Viewers

Several online tools allow you to view the source code of a webpage without having to use a browser. These tools can be useful if you do not have access to a web browser or if you want to view the source code of a webpage on a mobile device.

Examples of Online Viewers

  • View Source Code Online: A simple and straightforward online tool that allows you to enter a URL and view the source code of the corresponding webpage.
  • Code Beautify Source Code Viewer: This tool provides a more advanced source code viewer with features such as syntax highlighting, code formatting, and the ability to download the source code file.
  • FreeFormatter HTML Formatter: While primarily an HTML formatter, this tool also allows you to view and format HTML code.

Using Online Viewers

Using online source code viewers is typically very simple:

  1. Visit the website of the online source code viewer.
  2. Enter the URL of the webpage you want to view the source code for in the provided input field.
  3. Click on the “View Source Code” or similar button.
  4. The source code of the webpage will be displayed in the browser window.

Understanding the Basics of HTML

While viewing source code is helpful, understanding the underlying HTML structure is crucial for truly deciphering a webpage. HTML (HyperText Markup Language) is the foundation of all web pages. It uses tags to define elements and structure the content.

Key HTML Concepts

  • Tags: HTML elements are defined using tags, which are enclosed in angle brackets (< >). Most tags come in pairs: an opening tag (e.g.,

    ) and a closing tag (e.g.,

    ).

  • Elements: An HTML element consists of an opening tag, content, and a closing tag (e.g.,

    This is a paragraph.

    ).

  • Attributes: Attributes provide additional information about HTML elements. They are specified within the opening tag and consist of a name and a value (e.g., Description of the image).
  • Common HTML Elements:
    • : Declares the document type as HTML5.
    • : The root element of an HTML page.
    • : Contains metadata about the HTML document, such as the title, character set, and links to CSS stylesheets.
    • </code>: Specifies a title for the HTML page (which is shown in the browser’s title bar or tab).</li><li><code><body></code>: Contains the visible page content.</li><li><code><br /><h1></code> to <code></p><h6></code>: Define HTML headings.</li><li><code><p></code>: Defines a paragraph.</li><li><code><a></code>: Defines a hyperlink.</li><li><code><img></code>: Defines an image.</li><li><code><ul></code>: Defines an unordered list.</li><li><code><ol></code>: Defines an ordered list.</li><li><code><li></code>: Defines a list item.</li><li><code><div></code>: Defines a section in a document.</li><li><code><span></code>: Defines an inline section in a document.</li></ul></li></ul><h2>Tips for Effective Source Code Viewing</h2><p>Here are some tips to help you get the most out of viewing source code:</p><ul><li><b>Start with the Basics:</b> If you are new to web development, start by examining the source code of simple websites. As you become more comfortable, you can move on to more complex websites.</li><li><b>Use Syntax Highlighting:</b> Syntax highlighting makes it easier to read and understand source code by color-coding different elements. Most browsers and text editors provide syntax highlighting.</li><li><b>Format the Code:</b> Unformatted code can be difficult to read. Use a code formatter to indent the code and make it more readable. Many online tools and browser extensions can format code automatically.</li><li><b>Search for Specific Elements:</b> Use the search function (<code>Ctrl+F</code> or <code>Cmd+F</code>) to quickly find specific elements or text within the source code.</li><li><b>Pay Attention to Comments:</b> Developers often include comments in the source code to explain what the code does. Reading these comments can help you understand the code more quickly.</li><li><b>Experiment and Modify:</b> Don’t be afraid to experiment with the source code. Use the developer tools to modify the code and see how it affects the webpage. This is a great way to learn how different elements work.</li><li><b>Use Online Resources:</b> If you encounter code that you don’t understand, use online resources such as the MDN Web Docs or Stack Overflow to learn more about it.</li></ul><h2>Ethical Considerations</h2><p>While viewing source code is generally considered to be acceptable, it is important to be aware of the ethical considerations involved:</p><ul><li><b>Respect Copyright:</b> Do not copy or reproduce source code without permission from the copyright holder.</li><li><b>Do Not Exploit Vulnerabilities:</b> If you discover a security vulnerability in a website’s source code, do not exploit it. Instead, report the vulnerability to the website owner or administrator.</li><li><b>Use for Learning Purposes:</b> Use your knowledge of source code for learning and development purposes, not for malicious activities.</li></ul><h2>Conclusion</h2><p>Viewing source code is a valuable skill for anyone interested in web development, debugging, or understanding how websites work. By using the methods and techniques described in this guide, you can unlock the secrets of the web and gain a deeper understanding of the technology that powers our online world. Whether you’re a beginner or an experienced developer, exploring source code is a continuous learning process that can lead to new insights and discoveries. So, go ahead, dive into the code, and start exploring!</p><div class="mh-social-bottom"><div class="mh-share-buttons clearfix"> <a class="mh-facebook" href="#" onclick="window.open('https://www.facebook.com/sharer.php?u=https%3A%2F%2Fthehowtodo.com%2Funlocking-the-web-a-comprehensive-guide-to-viewing-source-code.html&t=Unlocking+the+Web%3A+A+Comprehensive+Guide+to+Viewing+Source+Code', 'facebookShare', 'width=626,height=436'); return false;" title="Share on Facebook"> <span class="mh-share-button"><i class="fab fa-facebook-f"></i></span> </a> <a class="mh-twitter" href="#" onclick="window.open('https://twitter.com/share?text=Unlocking+the+Web%3A+A+Comprehensive+Guide+to+Viewing+Source+Code:&url=https%3A%2F%2Fthehowtodo.com%2Funlocking-the-web-a-comprehensive-guide-to-viewing-source-code.html', 'twitterShare', 'width=626,height=436'); return false;" title="Tweet This Post"> <span class="mh-share-button"><i class="fab fa-x-twitter"></i></span> </a> <a class="mh-linkedin" href="#" onclick="window.open('https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fthehowtodo.com%2Funlocking-the-web-a-comprehensive-guide-to-viewing-source-code.html&source=', 'linkedinShare', 'width=626,height=436'); return false;" title="Share on LinkedIn"> <span class="mh-share-button"><i class="fab fa-linkedin"></i></span> </a> <a class="mh-pinterest" href="#" onclick="window.open('https://pinterest.com/pin/create/button/?url=https%3A%2F%2Fthehowtodo.com%2Funlocking-the-web-a-comprehensive-guide-to-viewing-source-code.html&media=https://thehowtodo.com/wp-content/uploads/2025/01/cropped-images-4-1-e1736525773281.webp&description=Unlocking+the+Web%3A+A+Comprehensive+Guide+to+Viewing+Source+Code', 'pinterestShare', 'width=750,height=350'); return false;" title="Pin This Post"> <span class="mh-share-button"><i class="fab fa-pinterest"></i></span> </a> <a class="mh-email" href="mailto:?subject=Unlocking%20the%20Web%3A%20A%20Comprehensive%20Guide%20to%20Viewing%20Source%20Code&body=https%3A%2F%2Fthehowtodo.com%2Funlocking-the-web-a-comprehensive-guide-to-viewing-source-code.html" title="Send this article to a friend" target="_blank"> <span class="mh-share-button"><i class="far fa-envelope"></i></span> </a> <a class="mh-print" href="javascript:window.print()" title="Print this article"> <span class="mh-share-button"><i class="fas fa-print"></i></span> </a> <a class="mh-whatsapp" href="#" onclick="window.open('https://api.whatsapp.com/send?phone={phone_number}&text=Unlocking+the+Web%3A+A+Comprehensive+Guide+to+Viewing+Source+Code:&url=https%3A%2F%2Fthehowtodo.com%2Funlocking-the-web-a-comprehensive-guide-to-viewing-source-code.html', 'whatsappShare', 'width=626,height=436'); return false;" title="Share on Whatsapp"> <span class="mh-share-button"><i class="fab fa-whatsapp"></i></span> </a> <a class="mh-mastodon" href="#" onclick="window.open('https://mastodonshare.com/share?text=Unlocking+the+Web%3A+A+Comprehensive+Guide+to+Viewing+Source+Code:&url=https%3A%2F%2Fthehowtodo.com%2Funlocking-the-web-a-comprehensive-guide-to-viewing-source-code.html', 'mustodonShare', 'width=626,height=436'); return false;" title="Share On Mastodon"> <span class="mh-share-button"> <img class="lazy" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2020%2025'%3E%3C/svg%3E" data-src="https://thehowtodo.com/wp-content/themes/mh-magazine/images/mostadon-logo.png" height="25px" width="20px"> </span> </a></div></div></div><div class="entry-tags clearfix"><i class="fa fa-tag"></i><ul><li><a href="https://thehowtodo.com/tag/guide" rel="tag">guide</a></li><li><a href="https://thehowtodo.com/tag/how-to" rel="tag">how to</a></li><li><a href="https://thehowtodo.com/tag/step-by-step" rel="tag">step-by-step</a></li></ul></div></article><div class="wpdiscuz_top_clearing"></div><div id='comments' class='comments-area'><div id='respond' style='width: 0;height: 0;clear: both;margin: 0;padding: 0;'></div><div id='wpd-post-rating' class='wpd-not-rated'><div class='wpd-rating-wrap'><div class='wpd-rating-left'></div><div class='wpd-rating-data'><div class='wpd-rating-value'> <span class='wpdrv'>0</span> <span class='wpdrc'>0</span> <span class='wpdrt'>votes</span></div><div class='wpd-rating-title'>Article Rating</div><div class='wpd-rating-stars'><svg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M0 0h24v24H0z' fill='none'/><path class='wpd-star' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/><path d='M0 0h24v24H0z' fill='none'/></svg><svg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M0 0h24v24H0z' fill='none'/><path class='wpd-star' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/><path d='M0 0h24v24H0z' fill='none'/></svg><svg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M0 0h24v24H0z' fill='none'/><path class='wpd-star' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/><path d='M0 0h24v24H0z' fill='none'/></svg><svg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M0 0h24v24H0z' fill='none'/><path class='wpd-star' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/><path d='M0 0h24v24H0z' fill='none'/></svg><svg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M0 0h24v24H0z' fill='none'/><path class='wpd-star' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/><path d='M0 0h24v24H0z' fill='none'/></svg></div><div class='wpd-rate-starts'><svg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M0 0h24v24H0z' fill='none'/><path class='wpd-star' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/><path d='M0 0h24v24H0z' fill='none'/></svg><svg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M0 0h24v24H0z' fill='none'/><path class='wpd-star' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/><path d='M0 0h24v24H0z' fill='none'/></svg><svg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M0 0h24v24H0z' fill='none'/><path class='wpd-star' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/><path d='M0 0h24v24H0z' fill='none'/></svg><svg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M0 0h24v24H0z' fill='none'/><path class='wpd-star' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/><path d='M0 0h24v24H0z' fill='none'/></svg><svg xmlns='https://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M0 0h24v24H0z' fill='none'/><path class='wpd-star' d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/><path d='M0 0h24v24H0z' fill='none'/></svg></div></div><div class='wpd-rating-right'></div></div></div><div id="wpdcom" class="wpdiscuz_unauth wpd-default wpd-layout-2 wpd-comments-open"><div class="wc_social_plugin_wrapper"></div><div class="wpd-form-wrap"><div class="wpd-form-head"><div class="wpd-sbs-toggle"> <i class="far fa-envelope"></i> <span class="wpd-sbs-title">Subscribe</span> <i class="fas fa-caret-down"></i></div><div class="wpd-auth"><div class="wpd-login"> <a rel="nofollow" href="https://thehowtodo.com/wp-login.php?redirect_to=https%3A%2F%2Fthehowtodo.com%2Funlocking-the-web-a-comprehensive-guide-to-viewing-source-code.html"><i class='fas fa-sign-in-alt'></i> Login</a></div></div></div><div class="wpdiscuz-subscribe-bar wpdiscuz-hidden"><form action="https://thehowtodo.com/wp-admin/admin-ajax.php?action=wpdAddSubscription" method="post" id="wpdiscuz-subscribe-form"><div class="wpdiscuz-subscribe-form-intro">Notify of</div><div class="wpdiscuz-subscribe-form-option" style="width:40%;"> <select class="wpdiscuz_select" name="wpdiscuzSubscriptionType"><option value="post">new follow-up comments</option><option value="all_comment" >new replies to my comments</option> </select></div><div class="wpdiscuz-item wpdiscuz-subscribe-form-email"> <input class="email" type="email" name="wpdiscuzSubscriptionEmail" required="required" value="" placeholder="Email"/></div><div class="wpdiscuz-subscribe-form-button"> <input id="wpdiscuz_subscription_button" class="wpd-prim-button wpd_not_clicked" type="submit" value="›" name="wpdiscuz_subscription_button"/></div> <input type="hidden" id="wpdiscuz_subscribe_form_nonce" name="wpdiscuz_subscribe_form_nonce" value="ec606cfba3" /><input type="hidden" name="_wp_http_referer" value="/unlocking-the-web-a-comprehensive-guide-to-viewing-source-code.html" /></form></div><div class="wpd-form wpd-form-wrapper wpd-main-form-wrapper" id='wpd-main-form-wrapper-0_0'></div><div id="wpdiscuz_hidden_secondary_form" style="display: none;"><div class="wpd-form wpd-form-wrapper wpd-secondary-form-wrapper" id='wpd-secondary-form-wrapper-wpdiscuzuniqueid' style='display: none;'><div class="wpd-secondary-forms-social-content"></div><div class="clearfix"></div></div></div><div class="wpd-login-to-comment">Please login to comment</div></div><div id="wpd-threads" class="wpd-thread-wrapper"><div class="wpd-thread-head"><div class="wpd-thread-info " data-comments-count="0"> <span class='wpdtc' title='0'>0</span> Comments</div><div class="wpd-space"></div><div class="wpd-thread-filter"><div class="wpd-filter wpdf-reacted wpd_not_clicked wpdiscuz-hidden" wpd-tooltip="Most reacted comment"> <i class="fas fa-bolt"></i></div><div class="wpd-filter wpdf-hottest wpd_not_clicked wpdiscuz-hidden" wpd-tooltip="Hottest comment thread"> <i class="fas fa-fire"></i></div><div class="wpd-filter wpdf-sorting wpdiscuz-hidden"> <span class="wpdiscuz-sort-button wpdiscuz-date-sort-asc wpdiscuz-sort-button-active" data-sorting="oldest">Oldest</span> <i class="fas fa-sort-down"></i><div class="wpdiscuz-sort-buttons"> <span class="wpdiscuz-sort-button wpdiscuz-date-sort-desc" data-sorting="newest">Newest</span> <span class="wpdiscuz-sort-button wpdiscuz-vote-sort-up" data-sorting="by_vote">Most Voted</span></div></div></div></div><div class="wpd-comment-info-bar"><div class="wpd-current-view"><i class="fas fa-quote-left"></i> Inline Feedbacks</div><div class="wpd-filter-view-all">View all comments</div></div><div class="wpd-thread-list"><div class="wpdiscuz-comment-pagination"></div></div></div></div></div><div id="wpdiscuz-loading-bar" class="wpdiscuz-loading-bar-unauth"></div><div id="wpdiscuz-comment-message" class="wpdiscuz-comment-message-unauth"></div></div><aside class="mh-widget-col-1 mh-sidebar" itemscope="itemscope" itemtype="https://schema.org/WPSideBar"><div id="search-5" class="mh-widget widget_search"><h4 class="mh-widget-title"><span class="mh-widget-title-inner">SEARCH</span></h4><form role="search" method="get" class="search-form" action="https://thehowtodo.com/"> <label> <span class="screen-reader-text">Search for:</span> <input type="search" class="search-field" placeholder="Search …" value="" name="s" /> </label> <input type="submit" class="search-submit" value="Search" /></form></div><div id="mh_magazine_custom_posts-13" class="mh-widget mh_magazine_custom_posts"><h4 class="mh-widget-title"><span class="mh-widget-title-inner">POPULAR ARTICLES</span></h4><ul class="mh-custom-posts-widget clearfix"><li class="mh-custom-posts-item mh-custom-posts-small clearfix post-134903 post type-post status-publish format-standard has-post-thumbnail category-howto category-ru tag-guide tag-how-to tag-step-by-step"><figure class="mh-custom-posts-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small" href="https://thehowtodo.com/%d1%80%d0%b0%d0%b7%d0%b4%d0%b5%d0%bb%d0%b5%d0%bd%d0%b8%d0%b5-%d0%b8-%d0%bf%d0%b5%d1%80%d0%b5%d1%81%d0%b0%d0%b4%d0%ba%d0%b0-%d0%ba%d1%83%d1%81%d1%82%d0%b0-%d0%bb%d0%b8%d0%bb%d0%b5%d0%b9%d0%bd%d0%b8.html" title="Разделение и пересадка куста лилейника: подробное руководство"><img width="60" height="60" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2060'%3E%3C/svg%3E" data-src="https://thehowtodo.com/wp-content/uploads/2025/01/cropped-images-4-1-e1736525773281.webp" class="attachment-mh-magazine-small size-mh-magazine-small wp-post-image default-featured-img lazy" alt="How To" decoding="async" /> </a></figure><div class="mh-custom-posts-header"><div class="mh-custom-posts-small-title"> <a href="https://thehowtodo.com/%d1%80%d0%b0%d0%b7%d0%b4%d0%b5%d0%bb%d0%b5%d0%bd%d0%b8%d0%b5-%d0%b8-%d0%bf%d0%b5%d1%80%d0%b5%d1%81%d0%b0%d0%b4%d0%ba%d0%b0-%d0%ba%d1%83%d1%81%d1%82%d0%b0-%d0%bb%d0%b8%d0%bb%d0%b5%d0%b9%d0%bd%d0%b8.html" title="Разделение и пересадка куста лилейника: подробное руководство"> Разделение и пересадка куста лилейника: подробное руководство </a></div></div></li><li class="mh-custom-posts-item mh-custom-posts-small clearfix post-206526 post type-post status-publish format-standard has-post-thumbnail category-howto category-ru tag-guide tag-how-to tag-step-by-step"><figure class="mh-custom-posts-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small" href="https://thehowtodo.com/%d0%ba%d0%b0%d0%ba-%d0%b8%d0%b4%d0%b5%d0%b0%d0%bb%d1%8c%d0%bd%d0%be-%d0%b6%d0%b0%d1%80%d0%b8%d1%82%d1%8c-%d0%ba%d1%80%d0%b5%d0%b2%d0%b5%d1%82%d0%ba%d0%b8-%d0%bf%d0%be%d1%88%d0%b0%d0%b3%d0%be%d0%b2.html" title="Как идеально жарить креветки: пошаговая инструкция с секретами"><img width="60" height="60" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2060'%3E%3C/svg%3E" data-src="https://thehowtodo.com/wp-content/uploads/2025/01/cropped-images-4-1-e1736525773281.webp" class="attachment-mh-magazine-small size-mh-magazine-small wp-post-image default-featured-img lazy" alt="How To" decoding="async" /> </a></figure><div class="mh-custom-posts-header"><div class="mh-custom-posts-small-title"> <a href="https://thehowtodo.com/%d0%ba%d0%b0%d0%ba-%d0%b8%d0%b4%d0%b5%d0%b0%d0%bb%d1%8c%d0%bd%d0%be-%d0%b6%d0%b0%d1%80%d0%b8%d1%82%d1%8c-%d0%ba%d1%80%d0%b5%d0%b2%d0%b5%d1%82%d0%ba%d0%b8-%d0%bf%d0%be%d1%88%d0%b0%d0%b3%d0%be%d0%b2.html" title="Как идеально жарить креветки: пошаговая инструкция с секретами"> Как идеально жарить креветки: пошаговая инструкция с секретами </a></div></div></li><li class="mh-custom-posts-item mh-custom-posts-small clearfix post-162946 post type-post status-publish format-standard has-post-thumbnail category-hi category-howto tag-guide tag-how-to tag-step-by-step"><figure class="mh-custom-posts-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small" href="https://thehowtodo.com/%e0%a4%9c%e0%a4%bc%e0%a5%82%e0%a4%ae-%e0%a4%ae%e0%a5%80%e0%a4%9f%e0%a4%bf%e0%a4%82%e0%a4%97-%e0%a4%b0%e0%a4%bf%e0%a4%95%e0%a5%89%e0%a4%b0%e0%a5%8d%e0%a4%a1%e0%a4%bf%e0%a4%82%e0%a4%97-%e0%a4%95.html" title="ज़ूम मीटिंग रिकॉर्डिंग कैसे एक्सेस करें: एक विस्तृत गाइड"><img width="60" height="60" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2060'%3E%3C/svg%3E" data-src="https://thehowtodo.com/wp-content/uploads/2025/01/cropped-images-4-1-e1736525773281.webp" class="attachment-mh-magazine-small size-mh-magazine-small wp-post-image default-featured-img lazy" alt="How To" decoding="async" /> </a></figure><div class="mh-custom-posts-header"><div class="mh-custom-posts-small-title"> <a href="https://thehowtodo.com/%e0%a4%9c%e0%a4%bc%e0%a5%82%e0%a4%ae-%e0%a4%ae%e0%a5%80%e0%a4%9f%e0%a4%bf%e0%a4%82%e0%a4%97-%e0%a4%b0%e0%a4%bf%e0%a4%95%e0%a5%89%e0%a4%b0%e0%a5%8d%e0%a4%a1%e0%a4%bf%e0%a4%82%e0%a4%97-%e0%a4%95.html" title="ज़ूम मीटिंग रिकॉर्डिंग कैसे एक्सेस करें: एक विस्तृत गाइड"> ज़ूम मीटिंग रिकॉर्डिंग कैसे एक्सेस करें: एक विस्तृत गाइड </a></div></div></li><li class="mh-custom-posts-item mh-custom-posts-small clearfix post-131634 post type-post status-publish format-standard has-post-thumbnail category-howto category-ru tag-guide tag-how-to tag-step-by-step"><figure class="mh-custom-posts-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small" href="https://thehowtodo.com/%d0%b2%d1%8b%d1%80%d0%b0%d1%89%d0%b8%d0%b2%d0%b0%d0%bd%d0%b8%d0%b5-%d0%b7%d0%b8%d0%bc%d0%bd%d0%b5%d0%b9-%d1%82%d1%8b%d0%ba%d0%b2%d1%8b-%d0%bf%d0%be%d1%88%d0%b0%d0%b3%d0%be%d0%b2%d0%be%d0%b5-%d1%80.html" title="Выращивание зимней тыквы: пошаговое руководство для обильного урожая"><img width="60" height="60" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2060'%3E%3C/svg%3E" data-src="https://thehowtodo.com/wp-content/uploads/2025/01/cropped-images-4-1-e1736525773281.webp" class="attachment-mh-magazine-small size-mh-magazine-small wp-post-image default-featured-img lazy" alt="How To" decoding="async" /> </a></figure><div class="mh-custom-posts-header"><div class="mh-custom-posts-small-title"> <a href="https://thehowtodo.com/%d0%b2%d1%8b%d1%80%d0%b0%d1%89%d0%b8%d0%b2%d0%b0%d0%bd%d0%b8%d0%b5-%d0%b7%d0%b8%d0%bc%d0%bd%d0%b5%d0%b9-%d1%82%d1%8b%d0%ba%d0%b2%d1%8b-%d0%bf%d0%be%d1%88%d0%b0%d0%b3%d0%be%d0%b2%d0%be%d0%b5-%d1%80.html" title="Выращивание зимней тыквы: пошаговое руководство для обильного урожая"> Выращивание зимней тыквы: пошаговое руководство для обильного урожая </a></div></div></li><li class="mh-custom-posts-item mh-custom-posts-small clearfix post-64358 post type-post status-publish format-standard has-post-thumbnail category-en category-howto tag-guide tag-how-to tag-ipad tag-iphone tag-operating-system tag-step-by-step tag-tips"><figure class="mh-custom-posts-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small" href="https://thehowtodo.com/snapchat-stealth-the-complete-guide-to-blacking-out-your-account.html" title="Snapchat Stealth: The Complete Guide to Blacking Out Your Account"><img width="60" height="60" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2060'%3E%3C/svg%3E" data-src="https://thehowtodo.com/wp-content/uploads/2025/01/cropped-images-4-1-e1736525773281.webp" class="attachment-mh-magazine-small size-mh-magazine-small wp-post-image default-featured-img lazy" alt="How To" decoding="async" /> </a></figure><div class="mh-custom-posts-header"><div class="mh-custom-posts-small-title"> <a href="https://thehowtodo.com/snapchat-stealth-the-complete-guide-to-blacking-out-your-account.html" title="Snapchat Stealth: The Complete Guide to Blacking Out Your Account"> Snapchat Stealth: The Complete Guide to Blacking Out Your Account </a></div></div></li><li class="mh-custom-posts-item mh-custom-posts-small clearfix post-8996 post type-post status-publish format-standard has-post-thumbnail category-howto category-ru tag-guide tag-how-to tag-step-by-step"><figure class="mh-custom-posts-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small" href="https://thehowtodo.com/%d1%81%d0%be%d0%b7%d0%b4%d0%b0%d0%b5%d0%bc-%d0%bf%d1%80%d0%be%d1%81%d1%82%d0%be%d0%b9-%d1%82%d0%b5%d0%bd%d1%8c-%d0%b2-photoshop-%d0%bf%d0%be%d1%88%d0%b0%d0%b3%d0%be%d0%b2%d0%be%d0%b5-%d1%80%d1%83.html" title="Создаем Простой Тень в Photoshop: Пошаговое Руководство для Начинающих"><img width="60" height="60" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2060'%3E%3C/svg%3E" data-src="https://thehowtodo.com/wp-content/uploads/2025/01/cropped-images-4-1-e1736525773281.webp" class="attachment-mh-magazine-small size-mh-magazine-small wp-post-image default-featured-img lazy" alt="How To" decoding="async" /> </a></figure><div class="mh-custom-posts-header"><div class="mh-custom-posts-small-title"> <a href="https://thehowtodo.com/%d1%81%d0%be%d0%b7%d0%b4%d0%b0%d0%b5%d0%bc-%d0%bf%d1%80%d0%be%d1%81%d1%82%d0%be%d0%b9-%d1%82%d0%b5%d0%bd%d1%8c-%d0%b2-photoshop-%d0%bf%d0%be%d1%88%d0%b0%d0%b3%d0%be%d0%b2%d0%be%d0%b5-%d1%80%d1%83.html" title="Создаем Простой Тень в Photoshop: Пошаговое Руководство для Начинающих"> Создаем Простой Тень в Photoshop: Пошаговое Руководство для Начинающих </a></div></div></li><li class="mh-custom-posts-item mh-custom-posts-small clearfix post-186194 post type-post status-publish format-standard has-post-thumbnail category-howto category-zh tag-guide tag-how-to tag-step-by-step"><figure class="mh-custom-posts-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small" href="https://thehowtodo.com/%e5%91%8a%e5%88%ab%e9%9c%89%e8%bf%90%ef%bc%9a%e5%85%a8%e6%96%b9%e4%bd%8d%e6%8c%87%e5%8d%97%e5%8a%a9%e6%82%a8%e6%89%ad%e8%bd%ac%e4%b9%be%e5%9d%a4%ef%bc%81.html" title="告别霉运:全方位指南助您扭转乾坤!"><img width="60" height="60" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2060'%3E%3C/svg%3E" data-src="https://thehowtodo.com/wp-content/uploads/2025/01/cropped-images-4-1-e1736525773281.webp" class="attachment-mh-magazine-small size-mh-magazine-small wp-post-image default-featured-img lazy" alt="How To" decoding="async" /> </a></figure><div class="mh-custom-posts-header"><div class="mh-custom-posts-small-title"> <a href="https://thehowtodo.com/%e5%91%8a%e5%88%ab%e9%9c%89%e8%bf%90%ef%bc%9a%e5%85%a8%e6%96%b9%e4%bd%8d%e6%8c%87%e5%8d%97%e5%8a%a9%e6%82%a8%e6%89%ad%e8%bd%ac%e4%b9%be%e5%9d%a4%ef%bc%81.html" title="告别霉运:全方位指南助您扭转乾坤!"> 告别霉运:全方位指南助您扭转乾坤! </a></div></div></li><li class="mh-custom-posts-item mh-custom-posts-small clearfix post-92135 post type-post status-publish format-standard has-post-thumbnail category-howto category-ru tag-guide tag-how-to tag-step-by-step"><figure class="mh-custom-posts-thumb"> <a class="mh-thumb-icon mh-thumb-icon-small" href="https://thehowtodo.com/%d0%ba%d0%b0%d0%ba-%d0%b8%d0%b7%d0%b1%d0%b0%d0%b2%d0%b8%d1%82%d1%8c%d1%81%d1%8f-%d0%be%d1%82-%d1%82%d1%80%d0%b5%d0%b2%d0%be%d0%b3%d0%b8-%d0%bf%d0%be%d1%88%d0%b0%d0%b3%d0%be%d0%b2%d0%be%d0%b5-%d1%80.html" title="Как избавиться от тревоги: Пошаговое руководство к спокойствию и уверенности"><img width="60" height="60" src="data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2060%2060'%3E%3C/svg%3E" data-src="https://thehowtodo.com/wp-content/uploads/2025/01/cropped-images-4-1-e1736525773281.webp" class="attachment-mh-magazine-small size-mh-magazine-small wp-post-image default-featured-img lazy" alt="How To" decoding="async" /> </a></figure><div class="mh-custom-posts-header"><div class="mh-custom-posts-small-title"> <a href="https://thehowtodo.com/%d0%ba%d0%b0%d0%ba-%d0%b8%d0%b7%d0%b1%d0%b0%d0%b2%d0%b8%d1%82%d1%8c%d1%81%d1%8f-%d0%be%d1%82-%d1%82%d1%80%d0%b5%d0%b2%d0%be%d0%b3%d0%b8-%d0%bf%d0%be%d1%88%d0%b0%d0%b3%d0%be%d0%b2%d0%be%d0%b5-%d1%80.html" title="Как избавиться от тревоги: Пошаговое руководство к спокойствию и уверенности"> Как избавиться от тревоги: Пошаговое руководство к спокойствию и уверенности </a></div></div></li></ul></div></aside></div></div><div class="mh-footer-nav-mobile"></div><nav class="mh-navigation mh-footer-nav" itemscope="itemscope" itemtype="https://schema.org/SiteNavigationElement"><div class="mh-container mh-container-inner clearfix"><div class="menu-footer-container"><ul id="menu-footer" class="menu"><li id="menu-item-217283" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-privacy-policy menu-item-217283"><a rel="privacy-policy" href="https://thehowtodo.com/privacy-policy">Privacy Policy</a></li><li id="menu-item-107" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-107"><a href="https://thehowtodo.com/terms-conditions">Terms & Conditions</a></li><li id="menu-item-106" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-106"><a href="https://thehowtodo.com/cookies">Cookie Policy</a></li></ul></div></div></nav><div class="mh-copyright-wrap"><div class="mh-container mh-container-inner clearfix"><p class="mh-copyright"> © Copyright Onion Search Engine LLC. All rights reserved.</p></div></div> <a title="Back to Top" href="#" class="mh-back-to-top"><i class="fa fa-chevron-up"></i></a></div> <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\/mh-magazine\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <script defer src="data:text/javascript;base64,dmFyIF9wYXE9d2luZG93Ll9wYXE9d2luZG93Ll9wYXF8fFtdO19wYXEucHVzaChbJ3RyYWNrUGFnZVZpZXcnXSk7X3BhcS5wdXNoKFsnZW5hYmxlTGlua1RyYWNraW5nJ10pOyhmdW5jdGlvbigpe3ZhciB1PSIvL2FuYWx5dGljcy5vbmlvbnNlYXJjaGVuZ2luZS5jb20vIjtfcGFxLnB1c2goWydzZXRUcmFja2VyVXJsJyx1KydtYXRvbW8ucGhwJ10pO19wYXEucHVzaChbJ3NldFNpdGVJZCcsMTNdKTt2YXIgZD1kb2N1bWVudCxnPWQuY3JlYXRlRWxlbWVudCgnc2NyaXB0Jykscz1kLmdldEVsZW1lbnRzQnlUYWdOYW1lKCdzY3JpcHQnKVswXTtnLnR5cGU9J3RleHQvamF2YXNjcmlwdCc7Zy5hc3luYz10cnVlO2cuc3JjPXUrJ21hdG9tby5qcyc7cy5wYXJlbnROb2RlLmluc2VydEJlZm9yZShnLHMpO30pKCk7"></script> <span id='wpdUserContentInfoAnchor' style='display:none;' rel='#wpdUserContentInfo' data-wpd-lity>wpDiscuz</span><div id='wpdUserContentInfo' style='overflow:auto;background:#FDFDF6;padding:20px;width:600px;max-width:100%;border-radius:6px;' class='lity-hide'></div><div id='wpd-bubble-wrapper'><span id='wpd-bubble-all-comments-count' style='display:none;' title='0'>0</span><div id='wpd-bubble-count'><svg xmlns='https://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path class='wpd-bubble-count-first' d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z'/><path class='wpd-bubble-count-second' d='M0 0h24v24H0z' /></svg><span class='wpd-new-comments-count'>0</span></div><div id='wpd-bubble'><svg xmlns='https://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path class='wpd-bubble-plus-first' d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/><path class='wpd-bubble-plus-second' d='M0 0h24v24H0z' /></svg><div id='wpd-bubble-add-message'>Would love your thoughts, please comment.<span id='wpd-bubble-add-message-close'><a href='#'>x</a></span></div></div><div id='wpd-bubble-notification'><svg xmlns='https://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path class='wpd-bubble-notification-first' d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z'/><path class='wpd-bubble-notification-second' d='M0 0h24v24H0z' /></svg><div id='wpd-bubble-notification-message'><div id='wpd-bubble-author'><div><span id='wpd-bubble-author-avatar'></span><span id='wpd-bubble-author-name'></span><span id='wpd-bubble-comment-date'>(<span class='wpd-bubble-spans'></span>)</span></div><span id='wpd-bubble-comment-close'><a href='#'>x</a></span></div><div id='wpd-bubble-comment'><span id='wpd-bubble-comment-text'></span><span id='wpd-bubble-comment-reply-link'>| <a href='#'>Reply</a></span></div></div></div></div><div id='wpd-editor-source-code-wrapper-bg'></div><div id='wpd-editor-source-code-wrapper'><textarea id='wpd-editor-source-code'></textarea><button id='wpd-insert-source-code'>Insert</button><input type='hidden' id='wpd-editor-uid' /></div><script type="text/javascript" src="https://thehowtodo.com/wp-includes/js/dist/hooks.min.js?ver=4d63a3d491d11ffd8ac6" id="wp-hooks-js"></script> <script type="text/javascript" src="https://thehowtodo.com/wp-includes/js/dist/i18n.min.js?ver=5e580eb46a90c2b997e6" id="wp-i18n-js"></script> <script defer id="wp-i18n-js-after" src="data:text/javascript;base64,Ci8qIDwhW0NEQVRBWyAqLwp3cC5pMThuLnNldExvY2FsZURhdGEoIHsgJ3RleHQgZGlyZWN0aW9uXHUwMDA0bHRyJzogWyAnbHRyJyBdIH0gKTsKLyogXV0+ICovCg=="></script> <script defer type="text/javascript" src="https://thehowtodo.com/wp-content/cache/autoptimize/js/autoptimize_single_96e7dc3f0e8559e4a3f3ca40b17ab9c3.js?ver=6.1.1" id="swv-js"></script> <script defer id="contact-form-7-js-before" src="data:text/javascript;base64,dmFyIHdwY2Y3PXsiYXBpIjp7InJvb3QiOiJodHRwczpcL1wvdGhlaG93dG9kby5jb21cL3dwLWpzb25cLyIsIm5hbWVzcGFjZSI6ImNvbnRhY3QtZm9ybS03XC92MSJ9LCJjYWNoZWQiOjF9Ow=="></script> <script defer type="text/javascript" src="https://thehowtodo.com/wp-content/cache/autoptimize/js/autoptimize_single_2912c657d0592cc532dff73d0d2ce7bb.js?ver=6.1.1" id="contact-form-7-js"></script> <script defer type="text/javascript" src="https://thehowtodo.com/wp-includes/js/comment-reply.min.js?ver=6.8.2" id="comment-reply-js" data-wp-strategy="async"></script> <script defer id="pojo-a11y-js-extra" src="data:text/javascript;base64,Ci8qIDwhW0NEQVRBWyAqLwp2YXIgUG9qb0ExMXlPcHRpb25zID0geyJmb2N1c2FibGUiOiIiLCJyZW1vdmVfbGlua190YXJnZXQiOiIiLCJhZGRfcm9sZV9saW5rcyI6IiIsImVuYWJsZV9zYXZlIjoiIiwic2F2ZV9leHBpcmF0aW9uIjoiIn07Ci8qIF1dPiAqLwo="></script> <script defer type="text/javascript" src="https://thehowtodo.com/wp-content/plugins/pojo-accessibility/assets/js/app.min.js?ver=1.0.0" id="pojo-a11y-js"></script> <script defer id="wpdiscuz-combo-js-js-extra" src="data:text/javascript;base64,dmFyIHdwZGlzY3V6QWpheE9iaj17IndjX2hpZGVfcmVwbGllc190ZXh0IjoiSGlkZSBSZXBsaWVzIiwid2Nfc2hvd19yZXBsaWVzX3RleHQiOiJWaWV3IFJlcGxpZXMiLCJ3Y19tc2dfcmVxdWlyZWRfZmllbGRzIjoiUGxlYXNlIGZpbGwgb3V0IHJlcXVpcmVkIGZpZWxkcyIsIndjX2ludmFsaWRfZmllbGQiOiJTb21lIG9mIGZpZWxkIHZhbHVlIGlzIGludmFsaWQiLCJ3Y19lcnJvcl9lbXB0eV90ZXh0IjoicGxlYXNlIGZpbGwgb3V0IHRoaXMgZmllbGQgdG8gY29tbWVudCIsIndjX2Vycm9yX3VybF90ZXh0IjoidXJsIGlzIGludmFsaWQiLCJ3Y19lcnJvcl9lbWFpbF90ZXh0IjoiZW1haWwgYWRkcmVzcyBpcyBpbnZhbGlkIiwid2NfaW52YWxpZF9jYXB0Y2hhIjoiSW52YWxpZCBDYXB0Y2hhIENvZGUiLCJ3Y19sb2dpbl90b192b3RlIjoiWW91IE11c3QgQmUgTG9nZ2VkIEluIFRvIFZvdGUiLCJ3Y19kZW55X3ZvdGluZ19mcm9tX3NhbWVfaXAiOiJZb3UgYXJlIG5vdCBhbGxvd2VkIHRvIHZvdGUgZm9yIHRoaXMgY29tbWVudCIsIndjX3NlbGZfdm90ZSI6IllvdSBjYW5ub3Qgdm90ZSBmb3IgeW91ciBjb21tZW50Iiwid2Nfdm90ZV9vbmx5X29uZV90aW1lIjoiWW91J3ZlIGFscmVhZHkgdm90ZWQgZm9yIHRoaXMgY29tbWVudCIsIndjX3ZvdGluZ19lcnJvciI6IlZvdGluZyBFcnJvciIsIndjX2Jhbm5lZF91c2VyIjoiWW91IGFyZSBiYW5uZWQiLCJ3Y19jb21tZW50X2VkaXRfbm90X3Bvc3NpYmxlIjoiU29ycnksIHRoaXMgY29tbWVudCBpcyBubyBsb25nZXIgcG9zc2libGUgdG8gZWRpdCIsIndjX2NvbW1lbnRfbm90X3VwZGF0ZWQiOiJTb3JyeSwgdGhlIGNvbW1lbnQgd2FzIG5vdCB1cGRhdGVkIiwid2NfY29tbWVudF9ub3RfZWRpdGVkIjoiWW91J3ZlIG5vdCBtYWRlIGFueSBjaGFuZ2VzIiwid2NfbXNnX2lucHV0X21pbl9sZW5ndGgiOiJJbnB1dCBpcyB0b28gc2hvcnQiLCJ3Y19tc2dfaW5wdXRfbWF4X2xlbmd0aCI6IklucHV0IGlzIHRvbyBsb25nIiwid2Nfc3BvaWxlcl90aXRsZSI6IlNwb2lsZXIgVGl0bGUiLCJ3Y19jYW5ub3RfcmF0ZV9hZ2FpbiI6IllvdSBjYW5ub3QgcmF0ZSBhZ2FpbiIsIndjX25vdF9hbGxvd2VkX3RvX3JhdGUiOiJZb3UncmUgbm90IGFsbG93ZWQgdG8gcmF0ZSBoZXJlIiwid2NfY29uZmlybV9yYXRlX2VkaXQiOiJBcmUgeW91IHN1cmUgeW91IHdhbnQgdG8gZWRpdCB5b3VyIHJhdGU/Iiwid2NfZm9sbG93X3VzZXIiOiJGb2xsb3cgdGhpcyB1c2VyIiwid2NfdW5mb2xsb3dfdXNlciI6IlVuZm9sbG93IHRoaXMgdXNlciIsIndjX2ZvbGxvd19zdWNjZXNzIjoiWW91IHN0YXJ0ZWQgZm9sbG93aW5nIHRoaXMgY29tbWVudCBhdXRob3IiLCJ3Y19mb2xsb3dfY2FuY2VsZWQiOiJZb3Ugc3RvcHBlZCBmb2xsb3dpbmcgdGhpcyBjb21tZW50IGF1dGhvci4iLCJ3Y19mb2xsb3dfZW1haWxfY29uZmlybSI6IlBsZWFzZSBjaGVjayB5b3VyIGVtYWlsIGFuZCBjb25maXJtIHRoZSB1c2VyIGZvbGxvd2luZyByZXF1ZXN0LiIsIndjX2ZvbGxvd19lbWFpbF9jb25maXJtX2ZhaWwiOiJTb3JyeSwgd2UgY291bGRuJ3Qgc2VuZCBjb25maXJtYXRpb24gZW1haWwuIiwid2NfZm9sbG93X2xvZ2luX3RvX2ZvbGxvdyI6IlBsZWFzZSBsb2dpbiB0byBmb2xsb3cgdXNlcnMuIiwid2NfZm9sbG93X2ltcG9zc2libGUiOiJXZSBhcmUgc29ycnksIGJ1dCB5b3UgY2FuJ3QgZm9sbG93IHRoaXMgdXNlci4iLCJ3Y19mb2xsb3dfbm90X2FkZGVkIjoiRm9sbG93aW5nIGZhaWxlZC4gUGxlYXNlIHRyeSBhZ2FpbiBsYXRlci4iLCJpc191c2VyX2xvZ2dlZF9pbiI6IiIsImNvbW1lbnRMaXN0TG9hZFR5cGUiOiIwIiwiY29tbWVudExpc3RVcGRhdGVUeXBlIjoiMCIsImNvbW1lbnRMaXN0VXBkYXRlVGltZXIiOiI2MCIsImxpdmVVcGRhdGVHdWVzdHMiOiIwIiwid29yZHByZXNzVGhyZWFkQ29tbWVudHNEZXB0aCI6IjUiLCJ3b3JkcHJlc3NJc1BhZ2luYXRlIjoiIiwiY29tbWVudFRleHRNYXhMZW5ndGgiOiIwIiwicmVwbHlUZXh0TWF4TGVuZ3RoIjoiMCIsImNvbW1lbnRUZXh0TWluTGVuZ3RoIjoiMSIsInJlcGx5VGV4dE1pbkxlbmd0aCI6IjEiLCJzdG9yZUNvbW1lbnRlckRhdGEiOiIxMDAwMDAiLCJzb2NpYWxMb2dpbkFncmVlbWVudENoZWNrYm94IjoiMSIsImVuYWJsZUZiTG9naW4iOiIwIiwiZmJVc2VPQXV0aDIiOiIwIiwiZW5hYmxlRmJTaGFyZSI6IjAiLCJmYWNlYm9va0FwcElEIjoiIiwiZmFjZWJvb2tVc2VPQXV0aDIiOiIwIiwiZW5hYmxlR29vZ2xlTG9naW4iOiIwIiwiZ29vZ2xlQ2xpZW50SUQiOiIiLCJnb29nbGVDbGllbnRTZWNyZXQiOiIiLCJjb29raWVoYXNoIjoiYjIwNDA2MjUyM2IzY2IzNjZlOTU5MmE1NDY0OTBhM2QiLCJpc0xvYWRPbmx5UGFyZW50Q29tbWVudHMiOiIwIiwic2Nyb2xsVG9Db21tZW50IjoiMSIsImNvbW1lbnRGb3JtVmlldyI6ImNvbGxhcHNlZCIsImVuYWJsZURyb3BBbmltYXRpb24iOiIxIiwiaXNOYXRpdmVBamF4RW5hYmxlZCI6IjEiLCJ1c2VySW50ZXJhY3Rpb25DaGVjayI6IjEiLCJlbmFibGVCdWJibGUiOiIxIiwiYnViYmxlTGl2ZVVwZGF0ZSI6IjAiLCJidWJibGVIaW50VGltZW91dCI6IjQ1IiwiYnViYmxlSGludEhpZGVUaW1lb3V0IjoiMTAiLCJjb29raWVIaWRlQnViYmxlSGludCI6IndwZGlzY3V6X2hpZGVfYnViYmxlX2hpbnQiLCJidWJibGVIaW50U2hvd09uY2UiOiIxIiwiYnViYmxlSGludENvb2tpZUV4cGlyZXMiOiI3IiwiYnViYmxlU2hvd05ld0NvbW1lbnRNZXNzYWdlIjoiMSIsImJ1YmJsZUxvY2F0aW9uIjoiY29udGVudF9sZWZ0IiwiZmlyc3RMb2FkV2l0aEFqYXgiOiIwIiwid2NfY29waWVkX3RvX2NsaXBib2FyZCI6IkNvcGllZCB0byBjbGlwYm9hcmQhIiwiaW5saW5lRmVlZGJhY2tBdHRyYWN0aW9uVHlwZSI6ImJsaW5rIiwibG9hZFJpY2hFZGl0b3IiOiIxIiwid3BEaXNjdXpSZUNhcHRjaGFTSyI6IiIsIndwRGlzY3V6UmVDYXB0Y2hhVGhlbWUiOiJsaWdodCIsIndwRGlzY3V6UmVDYXB0Y2hhVmVyc2lvbiI6IjIuMCIsIndjX2NhcHRjaGFfc2hvd19mb3JfZ3Vlc3QiOiIwIiwid2NfY2FwdGNoYV9zaG93X2Zvcl9tZW1iZXJzIjoiMCIsIndwRGlzY3V6SXNTaG93T25TdWJzY3JpYmVGb3JtIjoiMCIsIndtdUVuYWJsZWQiOiIxIiwid211SW5wdXQiOiJ3bXVfZmlsZXMiLCJ3bXVNYXhGaWxlQ291bnQiOiIxIiwid211TWF4RmlsZVNpemUiOiIyMDk3MTUyIiwid211UG9zdE1heFNpemUiOiI1MjQyODgwMCIsIndtdUlzTGlnaHRib3giOiIxIiwid211TWltZVR5cGVzIjp7ImpwZyI6ImltYWdlXC9qcGVnIiwianBlZyI6ImltYWdlXC9qcGVnIiwianBlIjoiaW1hZ2VcL2pwZWciLCJnaWYiOiJpbWFnZVwvZ2lmIiwicG5nIjoiaW1hZ2VcL3BuZyIsImJtcCI6ImltYWdlXC9ibXAiLCJ0aWZmIjoiaW1hZ2VcL3RpZmYiLCJ0aWYiOiJpbWFnZVwvdGlmZiIsImljbyI6ImltYWdlXC94LWljb24ifSwid211UGhyYXNlQ29uZmlybURlbGV0ZSI6IkFyZSB5b3Ugc3VyZSB5b3Ugd2FudCB0byBkZWxldGUgdGhpcyBhdHRhY2htZW50PyIsIndtdVBocmFzZU5vdEFsbG93ZWRGaWxlIjoiTm90IGFsbG93ZWQgZmlsZSB0eXBlIiwid211UGhyYXNlTWF4RmlsZUNvdW50IjoiTWF4aW11bSBudW1iZXIgb2YgdXBsb2FkZWQgZmlsZXMgaXMgMSIsIndtdVBocmFzZU1heEZpbGVTaXplIjoiTWF4aW11bSB1cGxvYWQgZmlsZSBzaXplIGlzIDJNQiIsIndtdVBocmFzZVBvc3RNYXhTaXplIjoiTWF4aW11bSBwb3N0IHNpemUgaXMgNTBNQiIsIndtdVBocmFzZURvaW5nVXBsb2FkIjoiVXBsb2FkaW5nIGluIHByb2dyZXNzISBQbGVhc2Ugd2FpdC4iLCJtc2dFbXB0eUZpbGUiOiJGaWxlIGlzIGVtcHR5LiBQbGVhc2UgdXBsb2FkIHNvbWV0aGluZyBtb3JlIHN1YnN0YW50aWFsLiBUaGlzIGVycm9yIGNvdWxkIGFsc28gYmUgY2F1c2VkIGJ5IHVwbG9hZHMgYmVpbmcgZGlzYWJsZWQgaW4geW91ciBwaHAuaW5pIG9yIGJ5IHBvc3RfbWF4X3NpemUgYmVpbmcgZGVmaW5lZCBhcyBzbWFsbGVyIHRoYW4gdXBsb2FkX21heF9maWxlc2l6ZSBpbiBwaHAuaW5pLiIsIm1zZ1Bvc3RJZE5vdEV4aXN0cyI6IlBvc3QgSUQgbm90IGV4aXN0cyIsIm1zZ1VwbG9hZGluZ05vdEFsbG93ZWQiOiJTb3JyeSwgdXBsb2FkaW5nIG5vdCBhbGxvd2VkIGZvciB0aGlzIHBvc3QiLCJtc2dQZXJtaXNzaW9uRGVuaWVkIjoiWW91IGRvIG5vdCBoYXZlIHN1ZmZpY2llbnQgcGVybWlzc2lvbnMgdG8gcGVyZm9ybSB0aGlzIGFjdGlvbiIsIndtdUtleUltYWdlcyI6ImltYWdlcyIsIndtdVNpbmdsZUltYWdlV2lkdGgiOiJhdXRvIiwid211U2luZ2xlSW1hZ2VIZWlnaHQiOiIyMDAiLCJwcmV2aWV3VGVtcGxhdGUiOiI8ZGl2IGNsYXNzPVwid211LXByZXZpZXcgW1BSRVZJRVdfVFlQRV9DTEFTU11cIiB0aXRsZT1cIltQUkVWSUVXX1RJVExFXVwiIGRhdGEtd211LXR5cGU9XCJbUFJFVklFV19UWVBFXVwiIGRhdGEtd211LWF0dGFjaG1lbnQ9XCJbUFJFVklFV19JRF1cIj5cclxuICAgIDxkaXYgY2xhc3M9XCJ3bXUtcHJldmlldy1yZW1vdmVcIj5cclxuICAgICAgICA8aW1nIGNsYXNzPVwid211LXByZXZpZXctaW1nXCIgc3JjPVwiW1BSRVZJRVdfSUNPTl1cIj5cclxuICAgICAgICA8ZGl2IGNsYXNzPVwid211LWZpbGUtbmFtZVwiPltQUkVWSUVXX0ZJTEVOQU1FXTxcL2Rpdj5cclxuICAgICAgICA8IS0tICAgICAgICA8ZGl2IGNsYXNzPVwid211LWRlbGV0ZVwiPlx1MDBhMDxcL2Rpdj4tLT5cclxuICAgIDxcL2Rpdj5cclxuPFwvZGl2PlxyXG4iLCJpc1VzZXJSYXRlZCI6IjAiLCJ2ZXJzaW9uIjoiNy42LjMzIiwid2NfcG9zdF9pZCI6IjIwNzc2OCIsImlzQ29va2llc0VuYWJsZWQiOiIxIiwibG9hZExhc3RDb21tZW50SWQiOiIwIiwiZGF0YUZpbHRlckNhbGxiYWNrcyI6W10sInBocmFzZUZpbHRlcnMiOltdLCJzY3JvbGxTaXplIjoiMzIiLCJ1cmwiOiJodHRwczpcL1wvdGhlaG93dG9kby5jb21cL3dwLWFkbWluXC9hZG1pbi1hamF4LnBocCIsImN1c3RvbUFqYXhVcmwiOiJodHRwczpcL1wvdGhlaG93dG9kby5jb21cL3dwLWNvbnRlbnRcL3BsdWdpbnNcL3dwZGlzY3V6XC91dGlsc1wvYWpheFwvd3BkaXNjdXotYWpheC5waHAiLCJidWJibGVVcGRhdGVVcmwiOiJodHRwczpcL1wvdGhlaG93dG9kby5jb21cL3dwLWpzb25cL3dwZGlzY3V6XC92MVwvdXBkYXRlIiwicmVzdE5vbmNlIjoiZTBjNmQzZTA5ZSIsImlzX3JhdGVfZWRpdGFibGUiOiIwIiwibWVudV9pY29uIjoiaHR0cHM6XC9cL3RoZWhvd3RvZG8uY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC93cGRpc2N1elwvYXNzZXRzXC9pbWdcL3BsdWdpbi1pY29uXC93cGRpc2N1ei1zdmcuc3ZnIiwibWVudV9pY29uX2hvdmVyIjoiaHR0cHM6XC9cL3RoZWhvd3RvZG8uY29tXC93cC1jb250ZW50XC9wbHVnaW5zXC93cGRpc2N1elwvYXNzZXRzXC9pbWdcL3BsdWdpbi1pY29uXC93cGRpc2N1ei1zdmdfaG92ZXIuc3ZnIiwiaXNfZW1haWxfZmllbGRfcmVxdWlyZWQiOiIxIn07dmFyIHdwZGlzY3V6VUNPYmo9eyJtc2dDb25maXJtRGVsZXRlQ29tbWVudCI6IkFyZSB5b3Ugc3VyZSB5b3Ugd2FudCB0byBkZWxldGUgdGhpcyBjb21tZW50PyIsIm1zZ0NvbmZpcm1DYW5jZWxTdWJzY3JpcHRpb24iOiJBcmUgeW91IHN1cmUgeW91IHdhbnQgdG8gY2FuY2VsIHRoaXMgc3Vic2NyaXB0aW9uPyIsIm1zZ0NvbmZpcm1DYW5jZWxGb2xsb3ciOiJBcmUgeW91IHN1cmUgeW91IHdhbnQgdG8gY2FuY2VsIHRoaXMgZm9sbG93PyIsImFkZGl0aW9uYWxUYWIiOiIwIn07"></script> <script defer id="wpdiscuz-combo-js-js-before" src="data:text/javascript;base64,dmFyIHdwZGlzY3V6RWRpdG9yT3B0aW9ucz17bW9kdWxlczp7dG9vbGJhcjoiIixjb3VudGVyOnt1bmlxdWVJRDoiIixjb21tZW50bWF4Y291bnQ6MCxyZXBseW1heGNvdW50OjAsY29tbWVudG1pbmNvdW50OjEscmVwbHltaW5jb3VudDoxLH0sfSx3Y19iZV90aGVfZmlyc3RfdGV4dDoiQmUgdGhlIEZpcnN0IHRvIENvbW1lbnQhIix3Y19jb21tZW50X2pvaW5fdGV4dDoiSm9pbiB0aGUgZGlzY3Vzc2lvbiIsdGhlbWU6J3Nub3cnLGRlYnVnOidlcnJvcid9Ow=="></script> <script defer type="text/javascript" src="https://thehowtodo.com/wp-content/plugins/wpdiscuz/assets/js/wpdiscuz-combo.min.js?ver=7.6.33" id="wpdiscuz-combo-js-js"></script> <script type="text/javascript" id="jetpack-stats-js-before">_stq=window._stq||[];_stq.push(["view",JSON.parse("{\"v\":\"ext\",\"blog\":\"238206747\",\"post\":\"207768\",\"tz\":\"0\",\"srv\":\"thehowtodo.com\",\"j\":\"1:15.0\"}")]);_stq.push(["clickTrackerInit","238206747","207768"]);</script> <script type="text/javascript" src="https://stats.wp.com/e-202537.js" id="jetpack-stats-js" defer="defer" data-wp-strategy="defer"></script> <a id="pojo-a11y-skip-content" class="pojo-skip-link pojo-skip-content" tabindex="1" accesskey="s" href="#content">Skip to content</a><nav id="pojo-a11y-toolbar" class="pojo-a11y-toolbar-left pojo-a11y-" role="navigation"><div class="pojo-a11y-toolbar-toggle"> <a class="pojo-a11y-toolbar-link pojo-a11y-toolbar-toggle-link" href="javascript:void(0);" title="Accessibility Tools" role="button"> <span class="pojo-sr-only sr-only">Open toolbar</span> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="currentColor" width="1em"><title>Accessibility Tools