Source code of the page hotkeys. Google Chrome - tools for webmasters

So, today we will look at several useful tools for Web masters that make life easier when designing a website. Let's start with the console for the web master in Google Chrome. And let’s go through the questions that most often arise for a webmaster during website layout.

To get to the console, open your website in Google Chrome, right-click anywhere on the web page, and select “View page code” in the contextual drop-down menu, or on a specific element to study by selecting “View code” element".

At the top you will have several tabs listed. Today we will talk about the “Elements” tab , which presents the elements of a web page with highlighting of tags, properties, highlighting the nesting of elements, a representation of the element’s hierarchy in the DOM tree (a hint at the bottom, from the root parent to the current one), the ability to edit elements, a list of their properties, consider searching by elements, as well as Let's get acquainted with viewing css styles, etc., associated with elements.

How can I view all the styles that are associated with a specific element? Which one is used now? In what files are they located?

So, nothing could be easier! Open the Google Chrome browser, open our site - the source of the questions, right-click on the desired element if it is visible in the context of the page, and select “View element code” in the context menu.

At the bottom we have a console with a highlighted tab on the left “ Elements" and all the styles associated with the element on the right, where: Computed Styles– these are general “summary” styles that were assigned to the element from the css rules and settings of the user’s browser (his environment), and at the same time the tab is collapsed.

But we are interested in the “Styles” tab, expanded under it, which lists in turn all the styles assigned to the element, as well as files where these rules are specified for this element by its type, id, class, name, property, attribute, etc. . Moreover, if a css rule is crossed out, it means it was redefined earlier/later (which makes it easy to track which of the css rules has priority and is applied in this case to the element).

Below the console there is a line that shows the element in the document hierarchy, easily allowing you to view the entire list of parent elements from the root to the selected element. Something like “bread crumbs”.

Html tag not visible in the context of the page? Or do you need to find all tags, for example, by a specific class, name, property, type?

Open the site in Google Chrome, right-click, call up the context menu, select « View page code » . Press the key combination “CTRL + F” at the same time, enter the phrase we need ( For example: class=”padding") and move through the list of found results, simultaneously viewing all the styles associated with the desired elements on the right side of the page.

How to view the html code of an element(s) loaded dynamically (for example: via Ajax)

We are waiting for the page to load in Google Chrome. We perform the necessary actions for Ajax to work. Right-click on the loaded data, select “View element code” in the context menu, and examine the result in the console on the “Elements" tab on the left.

View css style changes in real time

By the way, it is also convenient to observe, if necessary, what styles are assigned to an element on the fly, for example, when scrolling through a gallery and other timer events. All styles assigned via javascript in real time will be displayed in the property style selected element in the window on the “Elements” tab.

Interactively view the impact of css rules on the presentation of html tags

Google Chrome provides an interactive console for css styles. This means that you can not only view which styles are applied to the element, but also move the mouse cursor over a specific css property, enable it using the pop-up checkbox on the right, or disable it by clearing the flag, and view the resulting result on the page.

We change the structure of presentation of html elements on the fly (directly in the browser)

So, we have already learned how to explore the structure of a web document in Google Chrome, now we will briefly look at editing elements on the fly. We go to the console in any way convenient for us. We find the desired element in the “Elements” tab, right-click on it, thereby calling up the pop-up context menu:

  • Add attribute– adds an attribute for the specified element. As soon as the cursor becomes active, we begin to set the desired property. For example: write name="itemImage", which will be immediately added to our element.
  • Edit attribute– if you right-click on an element attribute, the item becomes available editattribute. Click and edit.

Usage example: We forgot the password saved under asterisks in Google Chrome (if the password was saved in this browser). Right-click on the element with the password entered, click on “View Element Code” , in the console on the left tab Elements right-click on the type="password" attribute, left-click on Editattribute change the attribute type=”password" on type=”text", and now, instead of asterisks, the same password is displayed in text form.

  • Edithtml– right-click on the element in the console Elements, select Edithtml, change the code to your liking.
  • CopyasHTML– we copy the portion of HTML we need for further research, say, in a notepad, or for other purposes where we need to apply exactly the same layout. We save time.
  • CopyXPATH– copies the XPATH representation of the structure from the root of the parent element to the selected element.
  • Deletenode– if you need to remove the currently selected element and all its children from the context of the web page, and see the result.
  • Wordwrap– will render a web page view in the console context Elements more readable.

In the following articles we will continue to consider tools for webmasters, and in particular we will get acquainted with the remaining tabs of tools for webmasters in Google Chrome, and also consider debugging javascript errors using different browsers

If you open any web page, it will contain typical elements that do not change depending on the type and focus of the site. Example 4.1 shows the code for a simple document containing basic tags.

Example 4.1. Web page source code

Example web page

Heading

First paragraph.

Second paragraph.

Copy the contents of this example and save it in the c:\www\ folder as example41.html. After that, launch the browser and open the file through the menu item File > Open File (Ctrl+O). In the document selection dialog, select the file example41.html. The web page shown in Fig. 1 will open in the browser. 4.1.

Rice. 4.1. Result of running the example

Elementis intended to indicate the type of the current document - DTD (document type definition, description of the document type). This is necessary so that the browser understands how to interpret the current web page, because HTML exists in several versions, in addition, there is XHTML (EXtensible HyperText Markup Language), which is similar to HTML, but differs from it in syntax. So that the browser “does not get confused” and understands according to which standard to display the web page, it is necessary to set in the first line of code .

There are several types, they differ depending on the version of HTML they are targeting. In table 4.1. The main types of documents with their descriptions are given.

Table 4.1. Valid DTDs
DOCTYPE Description
HTML 4.01
Strict HTML syntax.
Transitional HTML syntax.
An HTML document uses frames.
HTML 5
This version of HTML has only one doctype.
XHTML 1.0
Strict XHTML syntax.
XHTML Transitional Syntax.
The document is written in XHTML and contains frames.
XHTML 1.1
The developers of XHTML 1.1 expect it to gradually replace HTML. As you can see, this definition has no division into types, since the syntax is the same and obeys clear rules.

The difference between a strict and transitional document description is a different approach to writing document code. Strict HTML requires strict adherence to the HTML specification and is unforgiving. Transitional HTML is more relaxed about some code flaws, so this type is preferable to use in certain cases.

For example, in strict HTML and XHTML the presence of the tag is required , and in transitional HTML it can be omitted and not specified. At the same time, we remember that the browser will show the document in any case, regardless of whether it matches the syntax or not. This check is carried out using a validator and is intended primarily for developers to track errors in the document.</p> <p>In the future we will mainly use strict<!DOCTYPE>, unless otherwise specified. This will allow us to avoid common mistakes and teach us to write syntactically correct code.</p> <p>You can often find HTML code without using any<!DOCTYPE>, the web page will still be shown in this case. However, it may happen that the same document appears differently in the browser when you use<!DOCTYPE>and without it. In addition, browsers can display such documents in their own way, as a result the page “crumbles”, i.e. will be displayed completely differently from what the developer requires. To avoid such situations, always add<!DOCTYPE>to the beginning of the document.</p><p>Tag <html>defines the beginning of the HTML file, the header is stored inside it ( <head>) and document body ( <body> ).</p><p>Document title, also called a block <head>, can contain text and tags, but the content of this section is not directly shown on the page, except in the container <title> .</p><p> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </p><p>Tag <meta>is universal and adds a whole class of capabilities, in particular, with the help of meta tags, as this tag is generally called, you can change the page encoding, add keywords, document description and much more. So that the browser understands that it is dealing with UTF-8 encoding (Unicode transformation format, Unicode transformation format) and this line is added.</p><p> <title>Example web page

Tag determines the title of a web page; this is one of the important elements designed to solve many problems. In the Windows operating system, the title text is displayed in the upper left corner of the browser window (Figure 4.2).</p> <p><img src='https://i0.wp.com/htmlbook.ru/files/images/samhtml/fig_1_04_02.png' height="37" width="194" loading=lazy loading=lazy></p> <p>Rice. 4.2. Header view in browser</p> <p>Tag <title>is mandatory and must certainly be present in the document code.</p><p>You must add a closing tag</head> to indicate that the document title block is complete.</p><p>Document body <body>intended for placing tags and content of a web page.</p><p> <h1>Heading</h1> </p><p>HTML offers six text headings at varying levels, which indicate the relative importance of the section following the heading. Yes, tag <h1>represents the most important first level heading, and the tag <h6>serves to indicate the sixth level heading and is the least significant. By default, the first level heading is displayed in the largest bold font, and subsequent level headings are smaller in size. Tags <h1>...<h6>Refer to block elements, they always start on a new line, and after them, other elements appear on the next line. Additionally, white space is added before and after the title.</p><p> <!-- Комментарий --> </p><p>Some text can be hidden from being shown in the browser by making it a comment. Although this text will not be seen by the user, it will still be transmitted in the document, so if you look at the source code, you can discover hidden notes.</p> <p>You need to quickly see all the changes on the site itself, without affecting the files and code of the site posted on the Internet. For example, change the color scheme of a block, move an element that has moved out, etc.</p> <p>To do this, many webmasters use local Denwer or OpenServer servers, running a full copy of the site on their computer. This method is universal and suitable for professionals; it can be used to test the operation of various scripts and plugins, experiment with changing the design and edit all site files, and after the test, transfer the appropriate changes directly to the site.</p> <p>For users who are far from webmaster art, I recommend using a browser for these purposes. Since I use Chrome, I will provide instructions with screenshots for this particular browser. By analogy, you can work with Opera, Yandex.Browser, Mozilla Firefox and other browsers; the principle of their tools is similar.</p> <h2>Instruction 1: how to view the entire HTML code of a site in a browser</h2> <p>Open the required web page of your site. Right-click on the required element, a browser contextual drop-down menu with available commands will appear:</p> <p>Figure 1. Viewing the entire HTML code of a web page in the Chrome browser</p> <p><b>Important:</b> The commands in the drop-down menu may differ, for example, for active elements (links, pictures, videos) and inactive ones (text, background, divs):</p> <p><img src='https://i2.wp.com/samsebewebmaster.ru/wp-content/uploads/2015/12/%D0%92%D1%8B%D0%BF%D0%B0%D0%B4%D0%B0%D1%8E%D1%89%D0%B5%D0%B5-%D0%BC%D0%B5%D0%BD%D1%8E-%D0%B1%D1%80%D0%B0%D1%83%D0%B7%D0%B5%D1%80%D0%B0-Chrome.jpg' width="100%" loading=lazy loading=lazy></p><p>Figure 2. Chrome browser drop-down menu</p> <p>So if you don't find the command you need, just right-click somewhere else or use your browser's hotkeys.</p> <p>Let's return to Figure 1, it shows the necessary command to view all the HTML code of the source web page, it is called " <b>View page code</b>". Click on the command, a new tab will open with the full code of the source web page, a big plus to everything - viewing is available with syntax highlighting:</p> <p><img src='https://i2.wp.com/samsebewebmaster.ru/wp-content/uploads/2015/12/%D0%A4%D1%80%D0%B0%D0%B3%D0%BC%D0%B5%D0%BD%D1%82-%D0%BA%D0%BE%D0%B4%D0%B0-%D1%81%D0%B0%D0%B9%D1%82%D0%B0.jpg' width="100%" loading=lazy loading=lazy></p><p>Figure 3. Code fragment of this site</p> <p>This tool is very useful for finding and editing the elements you are looking for.</p> <h3>Alternative ways to view all HTML code of a web page</h3> <p>For faster access, you can use other ways to call this tool</p> <ol><li>In Figure 1 we also see that this command is available via a keyboard shortcut <Ctrl>+<U> ;</li> <li>Paste view-source:site into the address bar of the browser instead of my domain, insert your address;</li> </ol><p>Both methods are universal and should work in all browsers.</p> <p>At first, some may think that this is not a necessary tool at all, but viewing the entire HTML code of a site is great for finding the necessary elements in the code, these can be links, tags, meta tags, attributes and other elements.</p> <p>Hotkey combination <Ctrl>+<F>open the search window, in the Chrome browser it appears at the top right:</p> <p><img src='https://i1.wp.com/samsebewebmaster.ru/wp-content/uploads/2015/12/%D0%BF%D0%BE%D0%B8%D1%81%D0%BA-%D0%BF%D0%BE-%D0%BA%D0%BE%D0%B4%D1%83-%D1%81%D0%B0%D0%B9%D1%82%D1%83.jpg' width="100%" loading=lazy loading=lazy></p><p>Figure 3. Search by site code</p> <p>After you enter a request into the search form, the screen will move to the first element found, using the arrows you can move between them and select the one you need:</p> <p><img src='https://i0.wp.com/samsebewebmaster.ru/wp-content/uploads/2015/12/%D0%9F%D0%BE%D0%B8%D1%81%D0%BA-%D0%BF%D0%BE-HTML-%D0%BA%D0%BE%D0%B4%D1%83-%D1%81%D0%B0%D0%B9%D1%82%D0%B0.jpg' width="100%" loading=lazy loading=lazy></p><p>Figure 4. Search by HTML site code</p> <h2>Instruction 2: how to view and edit the HTML and CSS code of a site in the Google Chrome browser</h2> <p>Now the most important part, in which I will show how you can edit the HTML and CSS code of a website in a browser. then transfer the changes to the browser.</p> <br><img src='https://i1.wp.com/samsebewebmaster.ru/wp-content/uploads/2015/12/%D0%9A%D0%BE%D0%BC%D0%B0%D0%BD%D0%B4%D0%B0-%D0%9F%D1%80%D0%BE%D1%81%D0%BC%D0%BE%D1%82%D1%80%D0%B5%D1%82%D1%8C-%D0%BA%D0%BE%D0%B4.jpg' width="100%" loading=lazy loading=lazy><p>This useful tool is always available in your browser; experiment with other commands that will make it easier for you to edit your site.</p> <p>" The same item is also in the context menu, which, if you right-click the text <b>pages</b>. You can also use the keyboard shortcut CTRL + U. Mozilla FireFox does not use external programs - original <b>code</b> <b>pages</b> with syntax highlighting will be opened in a separate browser window.</p> <p>In Internet Explorer, click the File menu and select Edit in Notepad. Instead of the name Notepad, another name may be written, you have assigned it in the browser settings to view the original <b>code</b> A. On click <b>pages</b> with the right mouse button, a context menu appears, which also has an item that allows you to open the source <b>code</b> <b>pages</b> in an external program - “View HTML- <b>code</b> A".</p> <p><img src='https://i2.wp.com/st03.kakprosto.ru/tumb/680/images/article/2011/7/8/1_52552b95df96052552b95df9bd.jpg' height="669" width="663" loading=lazy loading=lazy></p> <p>In the Opera browser, open the menu, go to the “Page” section and you will have the opportunity to select “Source” in the “Development Tools” subsection <b>code</b>"or the item "Original <b>code</b> frame." These selections are assigned the hotkeys CTRL + U and CTRL + SHIFT + U, respectively. In a context menu bound to a click <b>pages</b> right-click, there is also an item “Initial <b>code</b>" Opera source <b>pages</b> in an external program that is assigned in the OS or in the browser settings for editing HTML files.</p> <p><img src='https://i0.wp.com/st03.kakprosto.ru/tumb/680/images/article/2011/7/8/1_52552b95eb30952552b95eb346.jpg' width="100%" loading=lazy loading=lazy></p> <p>Google Chrome browser without any doubt has the best organization for viewing the original <b>code</b> A. By right-clicking your mouse, you can select View <b>code</b> A <b>pages</b>"and then the source code with syntax highlighting will be opened in a separate tab. Or you can select the line “View” in the same menu <b>code</b> element” and in the same tab will open two additional frames in which you can inspect HTML and CSS <b>code</b> element <b>pages</b>. The browser will respond to the cursor moving across lines <b>code</b> and, highlighting elements on the page that correspond to this section of HTML <b>code</b> A.</p> <p><img src='https://i1.wp.com/st03.kakprosto.ru/tumb/680/images/article/2011/7/8/1_52552b9603c4652552b9603c84.jpg' width="100%" loading=lazy loading=lazy></p> <p>Looking through countless sites on the Internet, you can come across ones that we really like. A number of questions immediately arise. Was the site made using homemade code or some kind of CMS? What CSS styles does it have? What are its meta tags? And so on.</p> <p>There are many tools that can be used to extract information about the code of a website page. But we always have the right mouse button at hand. This is what we will use, using my site as an example.</p> <h2>How to view the page code?</h2> <p>To view the source code of a site page, you need to hover your mouse over any area of ​​the web page (except for images and links). After this, click on the right mouse button. A window with several options will open in front of us (they may differ slightly in different browsers). In the Google Chrome browser, for example, these are the commands:</p> <ul><li>back;</li> <li>forward;</li> <li>reboot;</li> <li>save as;</li> <li>seal;</li> <li>translate to Russian;</li> <li><b>view page code</b>;</li> <li>view code.</li> </ul><p>We need to click on <b>view page code</b>, and the html code of the site page will open in front of us.</p> <h2>Viewing the page code: what to pay attention to?</h2> <p>So, the Html page code is a numbered list of lines, each of which carries information about how this site is made. To quickly learn to understand this huge number of signs and special symbols, you need to distinguish between different sections of the code.</p> <p>For example, lines of code inside the head tag contain information for search engines and webmasters. They are not displayed on the site. Here you can see what keywords this page is promoted for, how its title and description are written. Also here you can find a link, following which we will learn about the family of Google fonts used on the site.</p> <p>If the site is made on CMS WordPress or Joomla, then this will also be visible here. For example, this area displays information about a WordPress theme or Joomla site template. You can see it by reading the contents of the links highlighted in blue. One link shows a website template.</p> <p>For example:</p> <p><i>//fonts.googleapis.com/css?family=Source+Sans+Pro%3A400%2C400italic%2C600&ver=4.5.3</i></p> <p>We will see the CSS font styles of the page. In this case, the font is used. This can be seen here - font-family: 'Source Sans Pro'.</p> <p>This site is optimized using the Yoast SEO plugin. This can be seen from this commented section of code:</p> <p><i>This site is optimized with the Yoast SEO plugin v3.4.2 - https://yoast.com/wordpress/plugins/seo/</i></p> <p>All information contained inside the body tag is displayed by the browser on the monitor screen. Here we see the html code of the page, and at the very bottom there is the Yandex Metrics script code. It is surrounded by a commented tag with the text:</p> <p><i>/Yandex.Metrika counter</i></p> <p><img src='https://i2.wp.com/vlad-tver.ru/wp-content/uploads/2016/08/metrika.jpg' width="100%" loading=lazy loading=lazy></p> <h2>Let's sum it up</h2> <p>Having carried out a rather superficial analysis of the code of the main page of the site, we can draw a conclusion about what tools this page was made with. We saw on it:</p> <ul><li>CMS WordPress;</li> <li>Google font Source Sans Pro;</li> <li>WordPress theme – Sydney;</li> <li>Yoast plugins;</li> <li>Yandex metrics counter.</li> </ul><p>Now the principle of analyzing the html code of a website page is quite clear. It is not at all necessary to keep the page you are researching open in the browser. You can save the page code to your computer using the key combinations ctrl+a, ctrl+c, ctrl+v. Paste it into any text editor (preferably Notepad++) and save it with the html extension. This way, you can study it deeper at any time and find more useful information for yourself.</p> <script>document.write("<img style='display:none;' src='//counter.yadro.ru/hit;artfast_after?t44.1;r"+ escape(document.referrer)+((typeof(screen)=="undefined")?"": ";s"+screen.width+"*"+screen.height+"*"+(screen.colorDepth? screen.colorDepth:screen.pixelDepth))+";u"+escape(document.URL)+";h"+escape(document.title.substring(0,150))+ ";"+Math.random()+ "border='0' width='1' height='1' loading=lazy loading=lazy>");</script> </div> <div class="comment_box" id="comments"> </div> </div> <div id="sidebar"> <div class="widget widget_nav_menu" id="nav_menu-2"> <div class="menu-mainmenu-container"> <ul id="menu-mainmenu-2" class="menu"> <li class="submenu"><a href="https://viws.ru/en/category/internet/">Internet</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/programs/">Programs</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/instructions/">Instructions</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/browsers/">Browsers</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/windows-10/">Windows 10</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/android/">Android</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/ios/">iOS</a> </li> <li class="submenu"><a href="https://viws.ru/en/category/communication/">Connection</a> </li> </ul> </div> </div> <div class="widget"> <div class="heading star">The last notes</div> <div class="popular_posts"> <div class="news_box"> <a href="https://viws.ru/en/obnovit-po-soni-iksperiya-obnovlenie-i-vosstanovlenie-sony-xperia.html" class="thumb"><img width="95" height="95" src="/uploads/401949e631612fa1b849303aa87f4b52.jpg" class="attachment-mini size-mini wp-post-image" alt="Updating and restoring Sony Xperia - instructions" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/obnovit-po-soni-iksperiya-obnovlenie-i-vosstanovlenie-sony-xperia.html">Updating and restoring Sony Xperia - instructions</a> </div> </div> </div> <div class="news_box"> <a href="https://viws.ru/en/4-dyuimovyi-ekran-luchshie-kompaktnye-smartfony-po-otzyvam-pokupatelei.html" class="thumb"><img width="95" height="95" src="/uploads/8ae52fb505598a8df03b3fed89c37f5a.jpg" class="attachment-mini size-mini wp-post-image" alt="The best compact smartphones according to customer reviews" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/4-dyuimovyi-ekran-luchshie-kompaktnye-smartfony-po-otzyvam-pokupatelei.html">The best compact smartphones according to customer reviews</a> </div> </div> </div> <div class="news_box"> <a href="https://viws.ru/en/knopka-vklyucheniya-iphone-5-ceny-na-nekotorye-nashi-uslugi.html" class="thumb"><img width="95" height="95" src="/uploads/b2895b4c11113c57191652d658a97c44.jpg" class="attachment-mini size-mini wp-post-image" alt="Prices for some of our services" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/knopka-vklyucheniya-iphone-5-ceny-na-nekotorye-nashi-uslugi.html">Prices for some of our services</a> </div> </div> </div> <div class="news_box"> <a href="https://viws.ru/en/mozhno-ne-chitat-soobshcheniya-vk-kak-nezametno-prochitat.html" class="thumb"><img width="95" height="95" src="/uploads/5c2abd2b5bfc6f9966ea8cea38fdf8c1.jpg" class="attachment-mini size-mini wp-post-image" alt="How to quietly read VKontakte messages" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/mozhno-ne-chitat-soobshcheniya-vk-kak-nezametno-prochitat.html">How to quietly read VKontakte messages</a> </div> </div> </div> <div class="news_box"> <a href="https://viws.ru/en/programmy-dlya-arhivacii-i-vosstanovleniya-sistemy-kakie-ispolzovat.html" class="thumb"><img width="95" height="95" src="/uploads/74d88ac620230a8cbf654717104fd3c9.jpg" class="attachment-mini size-mini wp-post-image" alt="What programs should I use to backup data on my computer?" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/programmy-dlya-arhivacii-i-vosstanovleniya-sistemy-kakie-ispolzovat.html">What programs should I use to backup data on my computer?</a> </div> </div> </div> </div> </div> <div class="widget"> <div class="heading star">Popular</div> <div class="popular_posts"> <div class="news_box"> <a href="https://viws.ru/en/reshaem-problemy-s-zapuskom-prilozhenii-posle-obnovleniya-os-x-reshaem-problemy-s.html" class="thumb"><img width="95" height="95" src="/uploads/41f63e9355f218fc666746b89ceec487.jpg" class="attachment-mini size-mini wp-post-image" alt="Solving problems with launching applications after updating OS X Mac has become slower" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/reshaem-problemy-s-zapuskom-prilozhenii-posle-obnovleniya-os-x-reshaem-problemy-s.html">Solving problems with launching applications after updating OS X Mac has become slower</a> </div> </div> </div> <div class="news_box"> <a href="https://viws.ru/en/poryadok-programmirovaniya-mikrokontrollerov-avr-sovety.html" class="thumb"><img width="95" height="95" src="/uploads/f66516ab885654ce47577b693b7b9d51.jpg" class="attachment-mini size-mini wp-post-image" alt="Tips for beginning microcontroller programmers" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/poryadok-programmirovaniya-mikrokontrollerov-avr-sovety.html">Tips for beginning microcontroller programmers</a> </div> </div> </div> <div class="news_box"> <a href="https://viws.ru/en/shemy-lampovyh-usilitelei-dlya-elektrogitary-obzor-gitarnyh-usilitelei.html" class="thumb"><img width="95" height="95" src="/uploads/1e2c7e97054ef25522080f4fbc300f86.jpg" class="attachment-mini size-mini wp-post-image" alt="Review of Hi-End Guitar Amplifiers" sizes="(max-width: 95px) 100vw, 95px" / loading=lazy loading=lazy></a> <div class="element"> <div class="title"> <a href="https://viws.ru/en/shemy-lampovyh-usilitelei-dlya-elektrogitary-obzor-gitarnyh-usilitelei.html">Review of Hi-End Guitar Amplifiers</a> </div> </div> </div> </div> </div> <div class="widget"> <div class="heading">News</div> <div class="business_news"> <div class="news"> <div class="date">2024-05-02 01:37:52</div> <a href="https://viws.ru/en/izmenenie-i-nastroika-temy-wordpress-luchshie-minimalistskie-temy.html" class="title">Best Minimalist WordPress Themes for Business and Blogging Avada – Best Selling Business WordPress Theme</a> </div> <div class="news"> <div class="date">2024-05-01 01:40:44</div> <a href="https://viws.ru/en/televizor-supra-obnovlenie-po-usb-instrukciya-po-obnovleniyu-programmnogo.html" class="title">Instructions for updating software on Supra Smart TVs</a> </div> <div class="news"> <div class="date">2024-05-01 01:40:44</div> <a href="https://viws.ru/en/inno-setup-ne-vyvodit-privetstvie-sozdanie-distributiva-windows-prilozheniya-v-inno-setup.html" class="title">Creating a Windows application distribution in Inno Setup</a> </div> <div class="news"> <div class="date">2024-05-01 01:40:44</div> <a href="https://viws.ru/en/luchshie-graficheskie-programmy-dlya-risovaniya-na-kompyutere.html" class="title">Free programs for drawing on a computer and tablet Program for drawing on a Russian PC</a> </div> <div class="news"> <div class="date">2024-05-01 01:40:44</div> <a href="https://viws.ru/en/kak-risovat-na-kompe-myshkoi-risovanie-myshkoi-na-kompyutere-osnovnye.html" class="title">Drawing with a mouse on a computer</a> </div> </div> </div> <div class="widget ai_widget" id="ai_widget-5"> <div class='dynamic dynamic-13' style='margin: 8px 0; clear: both;'> </div> </div> </div> </div> </div> </div> <div id="footer"> <div class="fixed"> <div class="inner"> <div class="footer_l"> <a href="https://viws.ru/en/" class="logo" style="background:none;">viws.ru</a> <div class="copyright"> <p>viws.ru - All about modern technology. Breakdowns, social networks, internet, viruses</p> <p><span>2024 - All rights reserved</span></p> </div> </div> <div class="footer_c"> <ul id="menu-topmenu-1" class="nav"> <li><a href="https://viws.ru/en/feedback.html">Contacts</a></li> <li><a href="">About the site</a></li> <li><a href="">Advertising on the website</a></li> </ul> <div class="footer_menu"> <ul id="menu-nizhnee-1" class=""> <li id="menu-item-"><a href="https://viws.ru/en/category/internet/">Internet</a></li> <li id="menu-item-"><a href="https://viws.ru/en/category/programs/">Programs</a></li> <li id="menu-item-"><a href="https://viws.ru/en/category/instructions/">Instructions</a></li> <li id="menu-item-"><a href="https://viws.ru/en/category/browsers/">Browsers</a></li> </ul> <ul id="menu-nizhnee-2" class=""> <li id="menu-item-"><a href="https://viws.ru/en/category/internet/">Internet</a></li> <li id="menu-item-"><a href="https://viws.ru/en/category/programs/">Programs</a></li> <li id="menu-item-"><a href="https://viws.ru/en/category/instructions/">Instructions</a></li> <li id="menu-item-"><a href="https://viws.ru/en/category/browsers/">Browsers</a></li> </ul> </div> </div> </div> </div> </div> </div> <script type="text/javascript">jQuery(function($) { $(document).on("click", ".pseudo-link", function(){ window.open($(this).data("uri")); } );} );</script> <script type='text/javascript' src='https://viws.ru/wp-content/plugins/contact-form-7/includes/js/scripts.js?ver=4.9.2'></script> <script type='text/javascript' src='https://viws.ru/wp-content/plugins/table-of-contents-plus/front.min.js?ver=1509'></script> <script type='text/javascript' src='https://viws.ru/wp-content/themes/delo/assets/scripts/theme.js'></script> <script type='text/javascript'> var q2w3_sidebar_options = new Array(); q2w3_sidebar_options[0] = { "sidebar" : "sidebar", "margin_top" : 60, "margin_bottom" : 200, "stop_id" : "", "screen_max_width" : 0, "screen_max_height" : 0, "width_inherit" : false, "refresh_interval" : 1500, "window_load_hook" : false, "disable_mo_api" : false, "widgets" : ['text-8','ai_widget-5'] } ; </script> <script type='text/javascript' src='https://viws.ru/wp-content/plugins/q2w3-fixed-widget/js/q2w3-fixed-widget.min.js?ver=5.0.4'></script> <script async="async" type='text/javascript' src='https://viws.ru/wp-content/plugins/akismet/_inc/form.js?ver=4.0.1'></script> </body> </html>