• Posts
  • Javascript
  • React
  • About
  • Videos

HTML

What Is DOM

June 3, 2019HTML

DOM (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 modify

Html Entities

February 23, 2019HTML

HTML 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 the

How do you serve a page with content in multiple languages?

February 3, 2019HTML

How 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 preferre

What is doctype in HTML documents? And why do you have to specify the doctype?

January 30, 2019HTML

If 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