[Updated] Instagram API to fetch User Profile, Followers, Following

Have you gone through one of our video tutorial : Simple Instagram API that fetches User Profile, Followers, Following, Images, Posts, Likes , Shares using JavaScript for fetching Instagram User profile, followers, following and posts. Most of the viewers were... Read more

Trek to Rara : Best Trek in Western Nepal

Rara is a popular destination from trekking and tourism prospects located in Western Nepal. On the way to Rara, one can witness cultural aspects and scenery that is quite different from rest of Nepal. Route to Rara is quite rough... Read more

Annapurna Base Camp Trek : Number One in everyone’s bucketlist

Annapurna Base Camp is an enigmatic destination where visitors can sightsee abundant of flora, fauna, beautiful landscapes and breathtaking snowcapped Himalayas. Among the various trekking destinations scattered all over Nepal, Annapurna Base Camp is another tourist attraction for adventure enthusiasts... Read more

Langtang Trek : Perfect Blend of Pleasant and Ambient Scenery

For nature lovers and trekking fans, Langtang trek is an ideal destination. It is a pleasant trip to get close to Mother Nature and enjoy the serene ambience getting away from the hustle and bustle of the ever-busy city at... Read more

Take me to Gosainkunda : A Trekking to Try Out Once

Among all the eye-catching scenic places scattered all over Nepal that have the spell-binding power to capture hearts and minds alike, Gosainkunda is one. It is a freshwater lake located at an altitude of 4,380 meters in Rasuwa district. Also,... Read more

Basic Guidelines to Kanchanjunga Base Camp Trek

Read more

Introduction to Artificial Intelligence : History and Applications

What is Artificial Intelligence (AI) ? Artificial Intelligence is defined as the ability of a digital computer or computer-controlled robot to perform tasks commonly associated with intelligent beings. The term is frequently applied to the project of developing systems endowed... Read more

Sliding Navigation with HTML, CSS and jQuery

Read more

How to create FAQ page using HTML and CSS ?

In this tutorial, we will learn to create a FAQ page using HTML, CSS and a bit of JQuery.   Source Code : <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>FAQ</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/5.1.3/css/bootstrap.min.css"> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <style type="text/css"> body{ background:... Read more

Responsive Food Delivery Website with HTML, CSS and JavaScript

In this tutorial, we are designing a Responsive Food Showcase Website using HTML, CSS and JavaScript. LIVE DEMODOWNLOAD           Read more

Detect Keyboard key press using JavaScript

We are going to use JavaScript to detect which key is pressed in keyboard. We will track an event listener to know the key code and key name of the key that is being pressed and show it in webpage.... Read more

Display Hide HTML Element on Scroll using JQuery

In this tutorial, we are going to learn to hide/show HTML element on scroll inside a webpage. Source Code : <style type="text/css"> .more-stories{ display: none; position: fixed; bottom: -50px; right: 10px; width: 350px; background: #fff; padding: 20px 40px; } .more-item{... Read more

Free JQuery Excel Plugin with working code and demo

JExcel is a lightweight JQuery plugin that enables us to create a Microsoft Excel like environment in our webpage. Source Code : <!doctype html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>JQuery Excel</title> <link href="https://cdnjs.cloudflare.com/ajax/libs/jexcel/4.6.1/jexcel.css" rel="stylesheet"> </head>... Read more

Counter App using HTML, CSS and JavaScript

In this tutorial, we are going to develop a simple Counter App using HTML, CSS and JavaScript. The code uses JavaScript event listener to either increment or decrement the counter value.   Source Code : <!DOCTYPE html> <html> <head> <meta... Read more

BS / AD Date Converter using PHP

In this tutorial, we are going to use a PHP library NepaliCalender.php to convert date from AD to BS and BS to AD. Download NepaliCalender.php library from here : NepaliCalender Use the following function to convert English Date (A.D.) to... Read more