viernes, 11 de marzo de 2022

HTML(HyperText Markup Language)

W3C(WORLD WIDE WEB CONSORTIUM)

The World Wide Web Consortium (W3C) is an international community where member organizations, a full-time staff,and the public work together to frvrlop Web standars

this organization dictates the rules from time and officially it goes in HTML5, which is the model that is going tobe handled in this blog

HOW TO PROGRAM IN HTML

To program in html you need a text editor, you can use sublime text, notepad, note pad++ and visual studio code. The difference between these is in the assistance when programming. in this blog i gonna use visual studio code

BASIC STRUCTURE

IMPORTANT MARKUPS

<html lang="ES">
this markup  is used to indicate the language and is placed after <doctype html!>



LAYOUT

physical design of a page prior to making it, part of a web page

HEADER->CORPORE INFORMATION
NAV->MAIN MENU
SECTION->DIVIDE IN ARTICLES
ASIDE->IT CAN BE LATERAL INFORMATION OR A MENU
FOOTER->YOU CAN SHOW MORE INFORMATION ABOUT THE COMPANY OR ABOUT THE AUTHOR

HEADER MARKUPS

<META NAME="" CONTENT="">
   ➤Is used to make a small description of the page
<META charset="utf-8">
  ➤It is to indicate the orthographic symbols that the page will recognize, UTF-8 recognizes symbols of spanish
<link href="route" ref="stylesheet" type="text/css">
 ➤Is used to use files from other pages or within the computer  



MARKUP IN THE BODY

<a href="route">text</a>/<a href="route" ><img src="route"></a>
 ➤it used to generate links, it can be to text or images

<h1></h1><h2></h2><h3></h3><h4></h4><h5></h5><h6></h6>
➤ This markups is used to change the size of the letter h1 is biggest and h6 is smallest,is more used to titles

<div id="">                                                                                                <div class="">
 CODE                  ➡This markup is used to assign attributes to a text⬅     CODE
</div>                                                                                                          </div>


 

No hay comentarios:

Publicar un comentario

HTML(HyperText Markup Language)

W3C(WORLD WIDE WEB CONSORTIUM) The World Wide Web Consortium (W3C) is an international community where member organizations, a full-time sta...