Aprende Inglés, Desarrollo Web, AI a precio especial.

Antes:$249

Currency
$209
Comienza ahora

Termina en:

17h

01m

43s

1

INITIAL CONCEPTS

-2. INITIAL CONCEPTS OF HTML-

<h3>Anatomy of HTML.</h3>

Basically, in HTML there are labels that open and close, some don’t, like images.
This labels when they open, they also accept attributes with values, this will be related normally with the style of the element. Between the open and close labels there can be text or more elements.

<h3>Doctype, html, head and body.</h3>

Doctype make sure the file it’s read properly in the different browsers, after this html would be the root of the html tree.
Finally, there are a head and a body in this tree, one like the roots are connected to the server while the visible part it’s the body.
In the head there are important labels like meta, related to the server and links, this one normally connects the styles to the html.

<h3>Importance Semantic Code.</h3>

It’s important to use the proper labels so the browser can read and understand properly our html file, same as other developers. Also, it has a big impact in the SEO and position of the website on the top. It’s a good practice.
An example it can be the labels “<i>” and “<em>”. It’s showed as the same, but they are different semantically.

<h3>Error types, debugging and label validation.</h3>

HTML is interpreted not compiled, so the errors are ignore frequently or the same browser modify the label to be readied.
To validate the label and see if there is any error, there is a website to do so https://validator.w3.org/

-3. INITIAL CONCEPTS OF CSS-

<h3>Anatomy of CSS.</h3>

To modify the style of the html file it’s used CSS. This count with selectors that can point to classes, ids or the name of the label from the html. This selectors will contain inside backers “{}” the declarations: properties (colour, position, background-colour, etc) and its values (blue, right, red).
P{
Colour: blue;
Background-colour: red;
}

<h3>Pseudo-classes and pseudo-elements.</h3>

In case of pseudo-classes, these are styles by default like first-child element that point to the first selector inside other selector, it would be written: selector:first-child{}”.
Pseudo-elements can be seen as elements that are included not by html but CSS. Always with the property “content”. These are commonly used by browsers in lists, sliders, scroll bars etc.

<h3>Model box.</h3>

Each element it’s a box, this has content where it seen for example the text and after there is a padding that keep space between the content and the border of the box, the limit.
Finally the space between the box and the rest it’s the margin.

<h3>Relative and absolute values.</h3>

The difference between this kind of sizing it’s the dependency of the unit to another unit. For example, it it’s spoken about percentage “%” this will be relative to the size of the element father.
In the other hand, pixels are independent, it’s not pointing other values. It’s its own.

<h3>Displays.</h3>

It points to the behaviour of the element, normally the box that it’s the element can be inline, it means it will extend only the content as maximum. But paragraphs are block elements, this will extend all it can.
Apart, there are other display as flex and gird the most used ones.

<h3>Position.</h3>

There are seven positions you can choose; this will indicate the location in the file. It’s even possible to create layers and put elements above or even keep this on the top of the screen when the user scrolls down.

Escribe tu comentario
+ 2