Trackpad Gestures on MacBook

wordpress featured image

Trackpad Gestures on MacBook comes in quite handy while working on the Apple machines. I have got my hands on a MacBook recently, and the gestures work good to quite some extent, but can be a little better. Here is the default list of trackpad gestures available on the MacBook […]

Navigate Back to Previous Page in Angular

angular navigate back

There are primarily 2 ways to navigate back to previous page in Angular: Using router.navigate() from @angular/router Using location.back() from @angular/common We will learn about these 2 methods in a little more detail below. Using router.navigate() to navigate back to previous page We can use router.navigate with the whole path […]

HTML Tips

html javascript

Listing out some HTML Tips for future use. Linking script and stylesheet in HTML <script src=”main.js”></script> <link href=”style.css” rel=”stylesheet”></link> New in HTML5 canvas | audio | svg | header | footer | aside | article | nav | section etc… ————– CSS Reset – Removes browser default stylesNormalize.css – Sets […]