The <!DOCTYPE> is a declaration which must appear before any other html markup.This is an instruction to the browser about interpreting the html markup by specifying the version of the markup.The doctype declaration specifies the DTD to be used for HTML document. In the case of previous versions of html the dtd to use needs […]
HTML5
Features of Progressive Web Apps
Progressive web apps (PWA) are web applications or websites that have the best features of both the web and native apps.For example native apps have more richness than web applications ,similarly Progressive web apps have the same richness as native apps.So Progressive web apps feels like native apps to the end user.Similar to web applications Progressive […]
Upload File in MVC using Ajax
Most of the applications today works with files such as word documents or pdfs.So one of the common requirements in most applications is uploading files.In the case of windows applications uploading files could be very fast as the user is working with files stored locally on his machine. Uploading files in web applications could be a […]
HTML5 new input types
One of the main design goals of HTML 5 is to reduce the dependency on third party libraries and plugins.HTML 5 includes many of the features which are commonly required by the client so that instead of relying on the client side frameworks and libraries we can directly use the HTML 5 native features. One […]
HTML5 History API
The browser toolbar is one of the most important UI element in any web application.One of the most common ways to navigate between the different pages is through the back and forward buttons on the toolbar. What the back and forward buttons actually do is that they help to navigate between the pages already visited by […]