Django is a high-level Python web framework that follows the Model-View-Template (MVT) architectural pattern. It is designed to help developers build clean, secure and scalable web applications quickly. How Django Works? Django…
Category: Tech Quest
How Cross-Site Request Forgery (CSRF) token works?
CSRF Protection in Django Embedding the Token in Forms After rendering, it becomes: Verification on the Server When is {% csrf_token %} Required? CSRF Protection in AJAX Requests: If using JavaScript (e.g.,…
CSS Layout – position Property
The position property defines the positioning method for an element. It supports five different values: position: static; (default) This is the default position for all HTML elements. position: relative The element is…
Project – Arithmetic Calculator
HTML file: mycalc.html JavaScript file CSS file
CSS – Property display: flex
Flex box layout. .container{ display: flex; justify-content: center; align-items: center;} 1. display: flex; 2. justify-content: center; 3. align-items: center; Example: Centering a Box Inside a Container .container { display: flex; justify-content: center;…
CSS Box Model (Size, Spacing, Border)
CSS Box Model width: 200px; height: 100px; padding: 10px; margin: 20px; border: 2px solid black; 1. width: 200px; 2. height: 100px; 3. padding: 10px; 4. margin: 20px; 5. border: 2px solid black;…
CSS – Font size property
The font-size property used to set the size of the text. Controlling text size is crucial in web design, but it is important not to manipulate font sizes to make paragraphs resemble…
CSS
What is CSS? CSS (Cascading Style Sheets) is a stylesheet language used to control the presentation and layout of HTML documents. It defines how elements appear on a webpage, including their colors,…
How to create django project?
Steps to create a Django project Check the directory, You can see the directory rbs-env is created You will see a created virtual environment inside the parentheses (rbs-env) D:\RBS>dir You will see…
What is Artificial Intelligence?
What is Artificial Intelligence? Artificial Intelligence (AI) is the simulation of human intelligence in machines that are designed to think, learn, and make decisions. AI enables computers and other digital systems to…