Entradas

Mostrando entradas de mayo, 2017

HTML - Basic Statements

Okay, I started these blog entries for improve my English. So, if I make some mistakes, please tell me. First of all, HTML are the abbreviation of HyperText Markup Language. It's the basic element of a webpage, which defines the structure and the content of it. All html files have a ".html" extension, and the structure is made by tags. For example: <br/> A tag represents something, for example "<br/>" means "line break". Some tags may contain child tags or text content. For example: <p>Hello world. <br/> This are a paragraph with 2 text lines.</p> If it file is saved and opened with a browser, the following is displayed: Hello world. This are a paragraph with 2 text lines. There are some common tags: <b> bold </b> <u> underlined </u> <i> italics </i> <hr/> horizontal separation rule To create a link to another web we have the anchor tag: <a href="http