You Are Viewing Posts Under Category: HTML-CSS-PHP-JavaScript

Responsive-Collapsible-Sidebar-In-Desktop-&-Tab-Navigation-In-Mobile

Responsive Collapsible Sidebar In Desktop & Tab Navigation In Mobile

Building responsive navigations for mega sites is never an easy task. If you’re working on an admin panel, chances are you’ll need to design and develop a vertical menu, with plenty of sub-categories. That’s why we decided to share today’s snippet! Our Sidebar navigation can make your li...
Pure-HTML5-Collapsible-Accordion-Multi-Tabs-Without-CSS-And-JavaScript

Pure HTML5 Collapsible Accordion Multi-Tabs Without CSS And JavaScript

Using the Details and Summary tags it is possible to create a collapsible accordion with no JavaScript code or CSS. Check out the Codepen post below for an interactive demo. Use the web for a short amount of time and you’ll no doubt bump into an accordion, one of those collapsible elements th...
How-To-Create-Resizable-Split-DIVs-Using-Pure-JavaScript

How To Create Resizable Split DIVs Using Pure JavaScript?

Resizable containers empower different users to customize a UI to emphasise what they find most important. A basic implementation of this is a split view or split pane, allowing users to enlarge content that is more relevant to them. When you needed to add support for a resizable panel-based layout ...
How-To-Encrypt-Secure-Passwords-In-New-PHP-And-Store-In-Database

How To Encrypt Secure Passwords In New PHP And Store In Database?

Hi! Here let’s see how to secure passwords in PHP. Developers have a huge responsibility when handling sensitive user data, such as passwords. They must take necessary precautions to store passwords and other sensitive information in a secure manner. Old-school methods use the md5 algorithm t...
How-To-Embed-PDF-File-In-Your-WebPage-Using-Pure-HTML5

How To Embed PDF File In Your WebPage Using Pure HTML5?

It’s time to know that how to embed a PDF file in an HTML page directly. Some websites tend to show pdf files directly on their site’s webpages instead of giving a download link for the files. Thanks to HTML5, you can also do the same with simple HTML code without using any third-party solut...
How-To-Convert-PDF-To-JPEG-Image-In-PHP

How To Convert Multipage PDF To JPEG Images In PHP?

You may need to know how to convert pdf to jpeg in PHP using imagick. PHP offers some good native extensions for image processing. Imagick is one of those extensions with which we can easily create JPEG images from pdf without the need for third-party tools. The library does not need installation si...
Pure-CSS-Window-Style-Collapsible-Tree-Menu-With-Folder-File-Icons

Pure CSS Window Style Collapsible Tree Menu With Folder/File Icons

A tree menu is a useful element to present hierarchical data in the visual interface of a website. It is most commonly used in file management systems to allow users to explore the folder and files. Basically, a simple tree-view navigation can be created using HTML nested lists. But in order to make...