Category Archives: HTML


March 8, 2016 9:09 pm

Creating the HTML view of a simple CRUD to do list with Angular.js Part 2


Creating the HTML view of a simple CRUD to do list with Angular.js Part 2
Controllers in Angular.js are JavaScript functions which would hold different methods and properties. In our HTML view, we can define the controller that an element uses and all of its child elements would also be able to use the properties and methods of that controller. We can also use those properties and methods in the HTML view through Angular’s data binding or through various built-in directives. Using a controller creates a new child scope for the element in which it is applied and its children.

[ Read More ]


March 7, 2016 8:46 pm

Creating the HTML view of a simple CRUD to do list with Angular.js Part 1


Creating the HTML view of a simple CRUD to do list with Angular.js Part 1
Angular.js is a popular open-source web application framework maintained primarily by Google. It enhances the time that is required to complete an application tremendously by allowing you to insert different JavaScript logic directly into the HTML through services, directives and the alike. Using it, you can prototype faster MVC and MVVM applications.

[ Read More ]


January 19, 2015 4:33 pm

Creating a Windows app in HTML, CSS, jQuery & PHP using TideSDK


Creating a Windows app in HTML, CSS, jQuery & PHP using TideSDK
TideSDK is a software development kit which enables you to create desktop apps that work on different operating systems (Windows, Linux and Mac) using HTML5, CSS3 and JavaScript. You can basically include any library you want when using those languages (such as jQuery, Foundation, Bootstrap). Furthermore, you can use server-side languages such as PHP, Ruby or Python when making your application.

[ Read More ]


January 6, 2015 11:39 am

Using Emmet to enhance your HTML workflow


Using Emmet to enhance your HTML workflow
Emmet is a plugin for many popular text editors which greatly improves HTML & CSS workflow. Emmet is a toolkit for high-speed HTML, XML, XSL (or any other structured code format) coding and editing. The core of this plugin is a powerful abbreviation engine which allows you to expand expressions—similar to CSS selectors—into HTML code.

[ Read More ]