Rexel Delgado

How to Create Modal with Bootstrap?

Want something fancy on your website? Then try using a modal. In today’s blog, I will guide you on how to create a modal with Bootstrap. What is a modal? A modal is a popup or dialog box that appears on top of the current page. A Guide to Creating a Modal with Bootstrap 1. First open your HTML file, then go to the Bootstraps page and go to the …

How to Create Modal with Bootstrap? Read More »

How to Access Remote Machine in Visual Studio Code Using SSH

For today’s blog, I will guide you on how you can access any folder on a remote machine using SSH. Once connected to a server, files and folders can be accessed from anywhere on the remote filesystem. Getting Started 1. To begin, you should have a Visual Studio Code. Open, your VS Code then go …

How to Access Remote Machine in Visual Studio Code Using SSH Read More »

How to Dockerize a WordPress Website

This tutorial will help you to deploy, setup, and install WordPress on Docker, and it is ONLY for the Linux environment. First, let’s define Docker and WordPress. What is a docker? It is an open platform for creating, distributing, and running applications. You can separate your applications from your infrastructure using Docker, which helps you quickly deliver software. You can …

How to Dockerize a WordPress Website Read More »

How To Create Responsive Tables using Bootstrap

What is an HTML table? HTML tables are composed of table cells inside rows and columns and are used to arrange data. The tag for the HMTML table is <table></table>. Tags like <td></td>, <th></th>, and <tr></tr> is also part of the HTML table. TAGS DEFINITION <table></table> HTML tag to create a table. <td></td> HTML tag …

How To Create Responsive Tables using Bootstrap Read More »

How To Create A Button tag Using Bootstrap?

Last time, I talked about what Bootstrap is and how to use it, but if you haven’t read that blog, go to this link: https://www.nucleiotechnologies.com/how-to-use-bootstrap/ Today we will talk about one of the HTML tags, the “<button></button>“, and how we create a button using Bootstrap. What is a <button> tag? Using the <button> tag, you can define a clickable button. Text (including tags like <i>, <b>,  <strong>, <br>, <img>, etc.) can be included inside a “button” element. If you …

How To Create A Button tag Using Bootstrap? Read More »

How To Use Bootstrap?

What is Bootstrap? A free and open-source CSS framework designed for front-end web development that prioritizes mobile responsiveness. It includes design templates for typography, forms, buttons, navigation, and other interface elements that are based on HTML, CSS, and JavaScript.Wikipedia Technology develops day by day, especially in front-end development, as time goes on. Although many front-end …

How To Use Bootstrap? Read More »

How to Fix the Got permission denied while trying to connect to the Docker daemon socket

When I tried to run a Docker command in Visual Studio Code’s terminal, I encountered the “Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get “http://%2Fvar%2Frun%2Fdocker.sock/v1.24/containers/json”: dial unix /var/run/docker.sock: connect: permission denied” error. I can’t also use the command “docker-compose up” to start and run an entire app on …

How to Fix the Got permission denied while trying to connect to the Docker daemon socket Read More »