My Learnings

Explore my blog posts documenting the insights and solutions I've gained from overcoming challenges over the past three years. Dive into a range of topics and lessons that showcase my continuous growth and expertise.

CSS: How to center a div

To center a `<div>` using CSS, there are several methods you can use depending on your layout and design requirements. Here some most common ways:...
Continue reading

CSS: Simple Selector

In CSS, simple selectors are the most basic type of selector that target elements based on their tag name, ID, class name. There used to...
Continue reading

What is CRUD?

CRUD is an acronym that stands: Create Read Update Delete It is a set of common operations that are performed on data in a database...
Continue reading

CSS: Selectors

CSS Selectors are patterns used to select and applay styles to specific HTML element in a web page. A CSS selector can target elements based...
Continue reading

HTML: Text Field Suggestions

If you find the browser’s auto-suggestion feature annoying for the input field. For example To Prevent the browser from showing the previous terms you’ve entered...
Continue reading

What is YAML format?

YAML is a human-readable data serialization language that is often used for writing configuration files. Depending on who you ask, YAML stands for yet another...
Continue reading

CSS: The Box Model

Every HTML element on a web page is considered a rectangular box, and the box model describes the properties of the box. The Box model...
Continue reading