The list of 15 questions that are often asked for interviews with applicants for frontend development positions: 1. What is a DOM? A DOM (Document Object Model) is a software interface to HTML documents. This interface allows you to influence a document from scripts, changing its appearance, styles, and content. The DOM presents the document as a node tree. 2. What is the difference between the < span > and < div > elements? < span > is an inline element < div > is a block element < div > elements must be used to design sections of the document. And elements < span > - as containers for small volumes of text, for images and other similar page elements. Note that you cannot place block elements in lowercase. 3. What are meta tags? Meta tags are tags in the < head > page tag that describe the contents of the page. Meta tags are not displayed on the page. They are only in its code. Their main task is to briefly describe the contents of pages to se...