This document provides an introduction to HTML and CSS. It outlines the basic files and tags needed to start an HTML document, including <h1>, <p>, <ul>, <li>, and <img> tags. It also discusses adding styles with CSS, using selectors like classes and IDs, writing comments, understanding the box model, and using media queries and Bootstrap.
This document provides an introduction to basic HTML and CSS. It outlines topics to cover such as HTML elements, common tags like headings and paragraphs, lists, tables, forms, and more advanced elements. For CSS, the document lists topics like selectors, the box model, borders, backgrounds, fonts, positioning, and inheritance. It includes references and provides a schedule of planned lessons from January to February 2017. The overall purpose is to teach the fundamentals of HTML and CSS for building websites.
El documento presenta los fundamentos de la programación, incluyendo las competencias requeridas como dominar las estructuras de control lógicas y las herramientas de programación. Explica conceptos como secuenciación, condicionales e iteración, y proporciona ejemplos de problemas y su solución utilizando cada una de estas estructuras lógicas.
This document discusses tips and tricks for using the Sublime Text 2 text editor. It describes how to set up user preferences, bind keys, install packages, and use plugins like SublimeLinter and Sass support to improve coding. The document also explains how to create and use code snippets in Sublime Text 2 to speed up development.
This document summarizes an introductory workshop on web technologies including HTML, CSS, and the document object model (DOM). It provides an overview of the history and basics of HTML, how to set up a basic website, and introductions to CSS, the DOM, and additional web technologies covered in the workshop like forms and positioning.
This document summarizes a knowledge sharing session on HTML and CSS basics. It covers topics like HTML tags and structures, CSS rules and selectors, the CSS box model, positioning, sprites, and hacks for dealing with browser inconsistencies. The session introduced fundamental concepts for using HTML to structure content and CSS for styling and layout, providing examples for common tags, selectors, properties and techniques. It aimed to give attendees an overview of the core building blocks of HTML and CSS.
HTML5 is a language for structuring and presenting content for the World Wide Web. it is the fifth revision of the HTML standard (created in 1990 and standardized as HTML4 as of 1997) and as of February 2012 is still under development. Its core aims have been to improve the language with support for the latest multimedia while keeping it easily readable by humans and consistently understood by computers and devices (web browsers, parsers, etc.). It improves interoperability and reduces development costs by making precise rules on how to handle all HTML elements, and how to recover from errors
This document provides an introduction to HTML and CSS. It outlines the basic files and tags needed to start an HTML document, including <h1>, <p>, <ul>, <li>, and <img> tags. It also discusses adding styles with CSS, using selectors like classes and IDs, writing comments, understanding the box model, and using media queries and Bootstrap.
This document provides an introduction to basic HTML and CSS. It outlines topics to cover such as HTML elements, common tags like headings and paragraphs, lists, tables, forms, and more advanced elements. For CSS, the document lists topics like selectors, the box model, borders, backgrounds, fonts, positioning, and inheritance. It includes references and provides a schedule of planned lessons from January to February 2017. The overall purpose is to teach the fundamentals of HTML and CSS for building websites.
El documento presenta los fundamentos de la programación, incluyendo las competencias requeridas como dominar las estructuras de control lógicas y las herramientas de programación. Explica conceptos como secuenciación, condicionales e iteración, y proporciona ejemplos de problemas y su solución utilizando cada una de estas estructuras lógicas.
This document discusses tips and tricks for using the Sublime Text 2 text editor. It describes how to set up user preferences, bind keys, install packages, and use plugins like SublimeLinter and Sass support to improve coding. The document also explains how to create and use code snippets in Sublime Text 2 to speed up development.
This document summarizes an introductory workshop on web technologies including HTML, CSS, and the document object model (DOM). It provides an overview of the history and basics of HTML, how to set up a basic website, and introductions to CSS, the DOM, and additional web technologies covered in the workshop like forms and positioning.
This document summarizes a knowledge sharing session on HTML and CSS basics. It covers topics like HTML tags and structures, CSS rules and selectors, the CSS box model, positioning, sprites, and hacks for dealing with browser inconsistencies. The session introduced fundamental concepts for using HTML to structure content and CSS for styling and layout, providing examples for common tags, selectors, properties and techniques. It aimed to give attendees an overview of the core building blocks of HTML and CSS.
HTML5 is a language for structuring and presenting content for the World Wide Web. it is the fifth revision of the HTML standard (created in 1990 and standardized as HTML4 as of 1997) and as of February 2012 is still under development. Its core aims have been to improve the language with support for the latest multimedia while keeping it easily readable by humans and consistently understood by computers and devices (web browsers, parsers, etc.). It improves interoperability and reduces development costs by making precise rules on how to handle all HTML elements, and how to recover from errors
31. 31
SAMPLE PAGE
See you again
H T M L C S S
<p class="style"> See you again </p>
.style{
color: green;
}
.style{
color: yellow;
}
.style{
color: red;
}
.style{
color: blue;
}