Está en la página 1de 3

Universidad Nacional de La Rioja

Práctica de Inglés: TUI & LDyPM


Trad. Florencia A. Bracamonte

HTML Tutorial1

HTML is the standard markup language for Web pages.


With HTML you can create your own Website.
This tutorial follows the latest HTML5 standard.
HTML is easy to learn - You will enjoy it!

A Simple HTML Document

Example Explained

 The <!DOCTYPE html> declaration defines that this document is an HTML5


document
 The <html> element is the root element of an HTML page
 The <head> element contains meta information about the HTML page
 The <title> element specifies a title for the HTML page (which is shown in the
browser's title bar or in the page's tab)
 The <body> element defines the document's body, and is a container for all the
visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.

1 https://www.w3schools.com

~1~
Universidad Nacional de La Rioja
Práctica de Inglés: TUI & LDyPM
Trad. Florencia A. Bracamonte

 The <h1> element defines a large heading


 The <p> element defines a paragraph

What is an HTML Element?

An HTML element is defined by a start tag, some content, and an end tag:

<tagname>Content goes here...</tagname>

The HTML element is everything from the start tag to the end tag.

Actividades del texto “HTML Tutorial”

Verbo to be

1. Identifica y resalta con amarillo todas las conjugaciones del verbo to be que encuentres
en el texto.
2. Reescribe las oraciones que contenga el verbo to be en la siguiente tabla y explica qué
señala (información que se explica en el apunte teórico de la prof. Oliva):

a) Señala lo que una persona, animal o cosa es.


b) Señala lo que una persona, animal o cosa hace.
c) Señala una acción que recae sobre una persona, animal o cosa.

Oración en inglés Propósito del verbo to be


 The <html> element is the root element
of an HTML page

~2~
Universidad Nacional de La Rioja
Práctica de Inglés: TUI & LDyPM
Trad. Florencia A. Bracamonte

Comprensión textual – Reformulación en español

3. De acuerdo a la información del texto y al análisis realizado, responde las siguientes


preguntas en español de forma clara y completa, usando tus propias palabras.

a) ¿Qué es HTML y para qué se usa?


b) Explica qué hace la etiqueta “<title>”
c) ¿A qué se llama “elemento HTML”? Menciona los que aparecen en esta primera
parte del tutorial.

a) HTML es un lengiaje de programacion que se lo utiliza para la creacion


de paginas web.

b) La etiqueta <title> concreta un titulo en la pagina web

c) Se llama elemento HTML al código que


tiene un inicio, un contenido y un final
<tagname>Content goes here...</tagname>

~3~

También podría gustarte