Monthly Archives: November 2021

INTRODUCTION TO HTML

INTRODUCTION Before starting to talk about the post "Introduction to HTML" I will give you some information on the editor to use. I personally am happy with Visual Studio Code but you may not be of the same opinion. Other good editors out there are atom, this is the link atom and in any case, the editor's choice is strictly personal, and in this you have full freedom. The browser that I take the liberty of recommending is Chrome especially for its inspector. INSTALLATION OF VISUAL STUDIO CODE FOR THOSE WHO INTEND TO USE IT This is the link [...]

By |2022-10-30T16:57:07+00:00November 23, 2021|0 Comments

HTML FUNDAMENTAL TAGS

BASIC TAGS In this post (HTML Fundamental Tags) we will analyze together some of the most common HTML tags, with which every Web Developer should be very familiar. Tags (labels) allow us to assign a role and a disposition to the contents of our pages, for example we can distinguish the title from the paragraphs. Each HTML element has a default display value, depending on the element type which can be block and inline. Block Level elements Always start on a new line. It always occupies the entire available width (extends from left to right as much as possible). [...]

By |2022-10-30T16:58:21+00:00November 26, 2021|0 Comments

THE ATTRIBUTES OF HTML TAGS

HTML TAG ATTRIBUTES Speaking of "HTML TAG ATTRIBUTES" the first and important consideration is that attributes allow us to provide extra information to the Tags. They consist of key-value pairs: SPECIFIC AND GLOBAL ATTRIBUTES Tag attributes can be specific to one or more tags or global. Here is a table relating to the global attributes (those present in all HTML tags) present in the W3School site. THE IMG TAG (IMAGE) The <img> tag is used to embed an image in an HTML page. The images are not technically inserted in a web page, [...]

By |2022-11-04T23:57:39+00:00November 27, 2021|0 Comments

HTML LISTS AND TABLES

THE HTML LISTS We introduce the post "Lists and Tables in HTML" starting from the lists. In HTML, we can organize information into Lists. They can be Ordered or Unordered Ordered Lists form numbered lists Unordered Lists form bulleted lists We form Ordered Lists with Tag <ol> </ol> while Unordered Lists with Tag <ul> </ul>. List objects are created with the <li> tag. The type attribute of the <ol> tag defines the type of the list item marker: EMMET ABBREVIATION TO CREATE AN ORDERED LIST Ti riporto un'abbreviazione Emmet per la lista ordinata. [...]

By |2022-10-30T17:02:25+00:00November 28, 2021|0 Comments

THE HTML FORM

FORM HTML The Forms are used to collect User input. To make full use of the Forms, or to be able to operate with user input, a backend structure is required. We will analyze in detail the implementation of this with Django. In this article we will focus on the structure of the HTML Forms, necessary to fully understand the server-side operation! The HTML element is used to create an HTML form for user input. The figure below represents an HTML registration form. Once the frontend side fields have been filled in, upon pressing the submit button they will [...]

By |2022-10-30T17:06:54+00:00November 30, 2021|0 Comments
Go to Top