CSS Text Property
1 - Text-align This property allows you to define the alignment of a text. Example: // This code is used to align all the paragraphs to the right.p {text-align: right;…
The main properties of a tag selector CSS
1 - Tag selector & general syntax of a CSS code Before we talk about the properties of a selector, let's take a simple example: Example to put the title…
Introduction to CSS Cascading Style Sheets
1 - Introduction Introduced in the mid-1990, CSS became widely used in web design and well supported by web browsers. CSS (Cascading Style Sheets) is a language that consists of…
Django Static Files
1 - About django static files Web applications are made up of a set of system files, but they must generally use additional files such as images, javaScript or CSS…
Django Model Form
1 - About Django Model Form Suppose we have a model containing various fields, we don't need to recode the fields in the html file. Django does this automatically for…
Django Template
Django provides an efficient and convenient way to generate and display dynamic HTML pages using its template system. A template consists of a static part for HTML output, as well…