HTMLWhat Is DOMJune 3, 2019HTMLDOM (Document Object Model) is a programming api for your HTML (or XML) documents. Basically it is an object representing parsed code of your page. It has tree like structure and allows you to traverse, access and modifyHtml EntitiesFebruary 23, 2019HTMLHTML entities are strigns inside HTML code that start with ampersand & and end with semicolon ;. They allow you to add wide variety of characters to your HTML code. For example characters are reserved in HTML because theHow do you serve a page with content in multiple languages?February 3, 2019HTMLHow do you serve a page with content in multiple languages? Serving webpages in multiple languages is a very big topic and for me it breaks down into three main parts. First we need to recognize what language is preferreWhat is doctype in HTML documents? And why do you have to specify the doctype?January 30, 2019HTMLIf you open any webpage, and look at it's source code, you'll always see a little thingy just before the opening html tag. So what is it, and what does it do? This string is a document type declaration, and it's importan