Posts

Showing posts from July, 2023

Live HTML editor _ Download

Image
Live code editor apk download About the app Live HTML editor is a simple editor tool that allows you preview your code on the go. It is a simple handy editor for quick code check editing. Notice This app is not a complete code editor that supports multiple files at a time. It is only meant for quick code check. So ensure you save or copy code before exiting. App User Guide Getting Started Welcome to Live HTML editor! This user guide will walk you through the various features and functionalities of our app. Installation To install the app, follow these steps: Scroll down to the bottom of this page to download the app. Click on the "Download" button to start the download. Run the installer file and follow the on-screen instructions. Once the installation is complete, launch the app. App Features The...

HOW TO CREATE A ROLLING WORLD WITH CSS ONLY

Image
Making CSS interactive and practicing with different ideas are ways to understanding it and even learn it fast. This does not only apply to CSS but to any other language to want to learn.  In this article, we are going to have fun with css by creating a rolling world as the preview above.  For this, we are going to need the following : 1. The table 2. The environment for the square 3. The 3D sphere 4. And some animations The table The golden background table is a div element with a background, and some inset border and shadow. Create a div element and assign the following attributes to it. Here is the code : .table{ height: 170px; padding: 0; margin: 20px 5px; display: flex; align-items: center; overflow: hidden; background: radial-gradient(circle at 30% 30%,#FFBE61 1%,#E28300 95%); border: 10px solid #3AC800; border-style: inset; box-shadow: inset 10px 10px 8px rgba(0,0,0,.4); } In...