domingo, 5 de febrero de 2017

HTML

HTML
Is the language used to builld web pages. By convention, files in HTML format use the extension .htm or .html
We can create a web page by writing in this code in any text editor and saving it with the correct extension, but this is usually only done for educational purposes. In practice, designers use HTML editors, which allow them to design websites simply and intuitively.
TAGS AND ATTRIBUTES
The basic characteristics of HTML are:
1. HTML is written with tags inside angle brackets.
2. HTML code always starts with the opening tag <html> and ends with the closing tag </html>.
3.HTML have two main parts:
The header, which is a statement at the top of the document, like a tittle.
The body,, which is the content of the page.
4. Tags are completed by attributes, which are parameters that indicate the properties or behaviour of the tag.
5. All HTML elements are composed of two tags. One opening and one closing.
Element                              Looks like this in the browser:
<b> bold text </b>                                        bold text                                       
<i> italic text </i>                         italic text                          
                    

viernes, 4 de noviembre de 2016

IMAGES




    I WILL INCLUDE SOME OF MY FAVORITE TECHNOLOGY IMAGES ON THIS PAGE!

ALGORITHMS

ALGORITHMS
An algorithm is a series of instructions or ordered steps for performing an activity or resolving a problem.
There are three types:
· Sequencial: whose instructions are executed one after the other in the same order as they appear.
· Selective ( or conditional ): with a series of instructions that are executed depending if a condition is met or not.
· Iterative ( or repeating ): That have a set of instructions that are repeated more than one time. These instuctions are contained in loops that mark the beginning and end of the repetition.