Thursday, September 23, 2010

Conceptos Básicos de HTML 4.01: Mi primera página web!

Como todos sabemos HTML 5 es un trabajo en curso y está siendo revisado en los próximos HTML estándar. Bueno, si usted quiere darle una intentar, usted tiene que aprender HTML 4.01, te daré una introducción a 4.01 HTML transitorio que es el actual lenguaje de marcas para pagina web.



Herramientas: Cualquier editor de texto en cualquier entorno (Windows, MAC OS, Linux, etc).
- Textpad (Usuarios de Windows)
- Bloc de notas (Usuarios de Windows)
- Kate (Usuarios de Linux)
- Sólo un editor de texto básico

Nivel de dificultad:
-Principiante

Instrucciones:
1. Abre tu editor de texto
2. Copia y pega las siguientes líneas de código:
-Hacer la sangría adecuada para una mejor lectura de códigos


<html>
<head>
<title>html | hola mundo</title>
</head>
<body>
<p>
Hello World, this is my first html page!
</p>
</body>
</html>















3. Guarde el archivo como hola.html en el escritorio
4. Izquierda haga clic en el icono hola.html para ver las opciones, y abrir con el navegador de Internet tales como (Mozilla, Safari, Chrome, Opera, Internet Explorer, etc)
Si usted está en MAC OS continuación, haga clic en control de la izquierda para ver las opciones.
5. El resultado será su primera página web HTML.

Se parece a lo siguiente:






















Explicación:
Etiquetas HTML: Hyper Text Markup Language
<html> "Abrir etiqueta"
</ html> "etiqueta de cierre"

Describe la cabeza de un documento HTML
<head> "Abrir etiqueta"
</ head> "etiqueta de cierre"

Título de un documento HTML
<title> "Abrir etiqueta"
</ title> "etiqueta de cierre"

Describe el cuerpo de un documento HTML
<body> "Abrir etiqueta"
</ body> "etiqueta de cierre"

Elemento para el párrafo en un documento HTML
<p> "Abrir etiqueta"
</ p> "etiqueta de cierre"

Tome un minuto para analizar cómo el código está estructurado y cómo funciona la lógica en este documento sencillo.








Basics of HTML 4.01: My first html web page



As we all know HTML 5 is a work in progress and it is being revised as the next HTML standard. Well if you want to give it a try we need to learn HTML 4.01, I will give you an introduction to HTML 4.01 transitional which is the current fully developed markup language for web pages.
I could continue on talking about this for hours, but we are here for basic tutorials on how HTML works:

Tools Needed: Any text editor in any environment (Windows, MAC OS, Linux, etc).
- Textpad (Windows Users)
- Notepad (Windows Users)
- Kate (Linux Users)
- Just a basic text editor

Level of Difficulty: 
-Beginner

INSTRUCTIONS:


Instructions:
1. Open your text editor
- You will find this application in Accessories or Utilities  
2. Copy and paste the next lines of code:
-Do the proper indenting for better code reading

<html>
<head>
<title>html | hola mundo</title>
</head>
<body>
<p>
Hello World, this is my first html page!
</p>
</body>
</html>



3. Save the file to the Desktop as hola.html  
4. Left click on the hola.html icon to view the options, and open with available internet browser such as (mozilla, safari, chrome, opera, internet explorer, etc)
5. Your result will be your first HTML web page.

It will look like the following:


Explanation:
HTML tags: Hyper Text Markup Language
<html> "Opening tag"
</html> "Closing tag"

Describes the head of an HTML document
<head> "Opening tag"
</head> "Closing tag"

Title an HTML document
<title> "Opening tag"
</title> "Closing tag"

Describes the body of an HTML document
<body> "Opening tag"
</body> "Closing tag"

Element for the paragraph in an HTML document
<p> "Opening tag"
</p> "Closing tag"

Take a minute to analyze how the code is structured and how logic works in this simple document.

Please comment about this short tutorial if you find it helpful!

Monday, September 20, 2010

House arrives tonight!

Hello Everyone,

House MD Season 7 starts tonight and I am so excited about the new story line for the new episodes.
Please share your thoughts about what you expect in this new Season 7 and enjoy the show tonight.





Programming in Tierra Mia Coffee

Hello Everyone, my name is Carlos Calvo and this is my very first blog. I am currently working towards a Software Engineering BS in California. I spend long hours studying programming languages and how to use them in real life tasks. I could continue telling you more about my life, but I am here to discuss about computer science topics.
This is my usual monday at Tierra Mia Coffee since I moved to Los Angeles. I open my laptop, pick a random programming language and create small programs that might be useful for a task.  Today I decided to continue programming in C since I want to understand the nuts and bolts on how to code my very own Operating System in a near future.
I know coding your own Operating System might take several years, so I want to start soon and have it as an ongoing long term project. I decided C will be the programming language since it was designed to be used for the UNIX Operating System and it is an excellent programming language for good memory management.
I would like to hear some opinions about what you think about C.
Regards,
Carlos Calvo