Olivera`s Web


Programas Utilizados

HTML

HTML, in full hypertext markup language, a formatting system for displaying material retrieved over the Internet. Each retrieval unit is known as a Web page (from World Wide Web), and such pages frequently contain hypertext links that allow related pages to be retrieved

html image

Estructurado HTML:

   <html>
                              
    <head>
      <title> </title>
    </head>
                              
    <body>
    </body>
                              
  </html>
           

CSS

CSS is the language for describing the presentation of Web pages, including colors, layout, and fonts. It allows one to adapt the presentation to different types of devices, such as large screens, small screens, or printers. CSS is independent of HTML and can be used with any XML-based markup language.

html image

JavaScript

JS JavaScript is a scripting or programming language that allows you to implement complex features on web pages — every time a web page does more than just sit there and display static information for you to look at — displaying timely content updates, interactive maps, animated 2D/3D graphics, scrolling video jukeboxes, etc.

html image





ACERCAMIENTO A C#

C# ruta de aprendizaje

  1. Escribir tu primer Hola Mundo!
  2. Tipos de Datos
    • String
    • Boolean
    • Int
    • Double
  3. Condicionales y Bucles
  4. Funciones
  5. Arrays y Objetos   POO

Historia de C#

El lenguaje C# se basa en tipos y métodos en lo que la especificación de C# define como una biblioteca estándar para algunas de las características. La plataforma .NET ofrece los tipos y métodos en un número de paquetes. Un ejemplo es el procesamiento de excepciones. Cada expresión o instrucción throw se comprueba para asegurarse de que el objeto que se genera deriva de Exception.

Hola mundo! en C#
            
     using System;
					
        public class Program
            {
	       public static void Main()
	          {
		      Console.WriteLine("Hello World");
	          }
            }
            
            









volver al inicio ^