12/08/2018, 17:55

HTML Questions - Front End Interview Handbook

Table of Contents What does a doctype do? How do you serve a page with content in multiple languages? What kind of things must you be wary of when design or developing for multilingual sites? What are data- attributes good for? Consider HTML5 as an open web platform. What are the ...

Table of Contents

  1. What does a doctype do?
  2. How do you serve a page with content in multiple languages?
  3. What kind of things must you be wary of when design or developing for multilingual sites?
  4. What are data- attributes good for?
  5. Consider HTML5 as an open web platform. What are the building blocks of HTML5?
  6. Describe the difference between a cookie, sessionStorage and localStorage.
  7. Describe the difference between <script>, <script async> and <script defer>.
  8. Why is it generally a good idea to position CSS <link>s between <head></head> and JS <script>s just before </body>? Do you know any exceptions?
  9. What is progressive rendering?
  10. Why you would use a srcset attribute in an image tag? Explain the process the browser uses when evaluating the content of this attribute.
  11. Have you used different HTML templating languages before?

Trả lời cho các câu hỏi: Front-end Job Interview Questions - HTML Questions.
Link tiếng Anh: HTML Questions

Note: Đây là bài dịch cá nhân nên không tránh khỏi sai sót về ngữ nghĩa, các bạn cảm thấy từ nào mình dịch không tốt thì comment ở dưới để mình sửa và cải thiện bài dịch nhé

1. What does a DOCTYPE do?

DOCTYPE có tác dụng gì?

DOCTYPE là viết tắt của "document type". Nó là một khai báo được sử dụng trong HTML để phân biệt giữa chế độ tiêu chuẩn và chế độ quirks (không tiêu chuẩn). Sự hiện diện của nó cho phép trình duyệt hiển thị trang web ở chế độ tiêu chuẩn.

Để sử dụng bạn chỉ cần thêm <!DOCTYPE html> tại đầu của trang web của bạn             </div>
            
            <div class=

0