SlideShare a Scribd company logo
INTRODUCCIÓN A




 Pablo Garaizar Sagarminaga
UniEncounter 2011, Eibar/Ermua
Agenda
●   Breve historia de HTML5.
●   ¿Qué es y qué no es HTML5?
●   Novedades en...
    ●   HTML
    ●   CSS
    ●   JS
●   Soporte actual de HTML5
Breve historia...
Source: David P. Heitmeyer, CSCI E-12 (Spring 2011), Harvard University

Recommended for you

Developing jQuery Plugins with Ease
Developing jQuery Plugins with EaseDeveloping jQuery Plugins with Ease
Developing jQuery Plugins with Ease

The document is a slide presentation on developing jQuery plugins. It discusses beginning plugin development, introducing an example on-demand editing plugin, plugin requirements, creating stylesheets, registering plugin methods, and handling optional configuration options. The example plugin allows elements to be edited inline after hovering or clicking and calls a callback function with new data.

javascriptfrosconjquery
Introduction to web components
Introduction to web componentsIntroduction to web components
Introduction to web components

A short introduction to web components. The talk covers the basic standard specified by W3c like HTML imports, templates, shadow DOM and custom elements. Further a short overview of polyme, x-tags/Brick is given and shows how these bring together native browser implementation, polyfills and framework code to leverage web components technology today.

javascripthtml5encapsulation
Progressive Enhancement with JavaScript and Ajax
Progressive Enhancement with JavaScript and AjaxProgressive Enhancement with JavaScript and Ajax
Progressive Enhancement with JavaScript and Ajax

The document discusses progressive enhancement with JavaScript and Ajax. It defines progressive enhancement as testing for support of different technologies like JavaScript, DOM, and objects, and providing alternative interfaces when something is not supported. It recommends testing for dependencies before using them, and separating interfaces from styles using CSS for flexibility. While CSS-only solutions seem appealing, JavaScript is more powerful and reliable for building complex, accessible interfaces. The key is enhancing interfaces thoughtfully to improve the user experience, not just for the sake of enhancement.

¿Qué es...
Timed
Canvas                       Web
                 media
2D API           playback   Storage


 MIME type
and protocol                Document
  handler
                Microdata
                             editing
 registration




                  Cross-
Browser                      Drag
                document
 history        messaging   & drop
...y qué no es?
Web
Geolocation    SQL       File API
              Database




WebGL          SVG        CSS3




                The
   Web        Indexed     Web
 Workers      Database   sockets
                API

Recommended for you

HTML 5 & CSS 3
HTML 5 & CSS 3HTML 5 & CSS 3
HTML 5 & CSS 3

An introduction to the new features brought by HTML 5 and CSS 3. Slides from my presentation at the May 2010 Kabisa Knowledge Session.

html5web developmentcss3
What you need to know bout html5
What you need to know bout html5What you need to know bout html5
What you need to know bout html5

The document provides an overview of HTML5 including: - New tags such as article, aside, audio, canvas, and video - The structure of an HTML5 page including the doctype, meta charset, and link types - Forms with new input types and validation attributes - Playing audio and video with HTML5 tags and controlling them with JavaScript - Drawing graphics on a canvas using JavaScript - Web workers for running scripts in background threads - Options for data storage including web storage, web SQL, and IndexedDB

html5kevinjavascript
Plone Interactivity
Plone InteractivityPlone Interactivity
Plone Interactivity

This document provides an overview of adding interactivity to Plone sites using JavaScript and various Plone-specific tools. It discusses including JavaScript via the resource registry and browser resources, using the Kinetic Style Sheets (KSS) framework to add behaviors with CSS syntax, common JavaScript libraries, debugging techniques, and notes that KSS may be removed from core Plone in future versions due to its large size and lack of adoption.

plonesymposiumeast2009plonejquery
A pesar de esto...
JS
HTML5   CSS3
               APIs
Novedades
En HTML

Recommended for you

Google’s PRPL Web development pattern
Google’s PRPL Web development patternGoogle’s PRPL Web development pattern
Google’s PRPL Web development pattern

The document discusses the divergence of goals between the W3C and WHATWG efforts for HTML specifications. It notes that the W3C is focused on creating snapshots of HTML according to its process, while WHATWG is focused on the canonical description and adding new features as needed. It also introduces web components as a way to build reusable custom elements using existing web technologies like HTML and JavaScript.

polymergoogleprpl
Netvibes UWA workshop at ParisWeb 2007
Netvibes UWA workshop at ParisWeb 2007Netvibes UWA workshop at ParisWeb 2007
Netvibes UWA workshop at ParisWeb 2007

The document describes the Universal Widget API (UWA) which aims to create widgets that work across multiple platforms without code changes. It outlines the basics of UWA including using a static XHTML file with CSS and JavaScript. It presents a skeleton structure for UWA widgets and provides examples including a fliptext widget and a fireplace widget. It also discusses replacing native JavaScript methods with UWA-specific equivalents and the Ajax methods available in the UWA.Data object.

jQuery Mobile & PhoneGap
jQuery Mobile & PhoneGapjQuery Mobile & PhoneGap
jQuery Mobile & PhoneGap

jQuery Mobile provides a framework for building mobile web applications using standard web technologies like HTML, CSS, and JavaScript. It allows developers to build sites that work across desktop and mobile browsers through a responsive design approach. Key features include touch event handling, themes, transitions between pages, and support for common mobile device capabilities and patterns.

jquery mobile mobilité phonegap html5 ios android
<!DOCTYPE HTML PUBLIC "­//W3C//DTD HTML 4.01 
Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 

<!DOCTYPE html PUBLIC "­//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1­strict.dtd">




<!DOCTYPE html>


            Declaración simplificada
Nueva estructura de documento
<html>
<html lang="en">


<meta>
<meta http­equiv="Content­Type" content="text/html; 
charset=utf­8">

<meta charset="utf­8" />


<link>
<link rel=”stylesheet|alternate|icon|license|prefetch|
nofollow|noreferrer|pingback|search|sidebar|tag”>



                   Nueva cabecera
<time>
<time datetime="2011­03­17T17:59:37+01:00" pubdate>
  March 17, 2011 5:37pm GMT+1
</time>


<mark>
<p>This is <m>really important</m> to understand HTML5</p>




               Etiquetas semánticas

Recommended for you

Open Source Ajax Solution @OSDC.tw 2009
Open Source Ajax  Solution @OSDC.tw 2009Open Source Ajax  Solution @OSDC.tw 2009
Open Source Ajax Solution @OSDC.tw 2009

This document provides an overview of various open source Ajax solutions including jQuery + DWR, GWT, and ZK. jQuery is a JavaScript library that simplifies DOM manipulation and AJAX requests. DWR allows making remote procedure calls from JavaScript to Java. GWT compiles Java code to JavaScript and supports component-based development. ZK is a server-centric framework that uses XML markup and allows building rich web applications in pure Java without writing JavaScript.

zkopensourceosdctw2009
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....HTML5 (and friends) - History, overview and current status - jsDay Verona 11....
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....

1. HTML5 provides new semantic elements like header, footer, nav and article that improve accessibility and help structure documents. It also extends existing APIs and adds new APIs for multimedia, geolocation, offline storage and more. 2. HTML5 introduces new form input types for dates, times, numbers and more. It also provides built-in form validation without JavaScript. 3. The <video> and <audio> elements allow native playback of multimedia across browsers without plugins. The <canvas> element allows dynamic drawing via JavaScript. 4. While still evolving, many HTML5 features can be used today through progressive enhancement and feature detection. It offers developers new capabilities for building web applications and interactive experiences on

htmlaudioweb design
Ditching jQuery Madison
Ditching jQuery MadisonDitching jQuery Madison
Ditching jQuery Madison

The document discusses ditching JQuery for vanilla JavaScript. It describes how to perform common tasks like DOM manipulation, events, and AJAX calls without JQuery. While JQuery hides browser differences and simplifies code, understanding vanilla JavaScript makes developers better. The presenter provides examples of equivalent code for querying elements, adding events, and making requests. Polyfills can add missing browser functionality. While JQuery is still useful for old browsers, vanilla JavaScript offers more control and flexibility over the long run.

jqueryjavascript
<meter>
<p>G­force is
<meter value="9.2" min="0" max="19.6" low="9.5" high="10.3" 
optimum="9.8">9.2</meter>.
</p>


<progress>
<p>Downloaded: 
  <progress value="1534602" max="4603807">33%</progress>
</p>




              Etiquetas semánticas
<audio>
<audio src="music.mp3"
    autoplay loop="3" controls preload />



<video>
<video width="320" height="240" controls>
  <source src="pr6.mp4"  type='video/mp4; codecs="avc1.42E01E, mp4a.40.2"'>
  <source src="pr6.webm" type='video/webm; codecs="vp8, vorbis"'>
  <source src="pr6.ogv"  type='video/ogg; codecs="theora, vorbis"'>
</video>




                           Multimedia
<canvas>
<canvas id=”area” width=”320” height=”240”>
</canvas>

<script>
function draw() {
  var area = document.getElementById("area");
  var ctx = area.getContext("2d");
  ctx.fillRect(50, 25, 150, 100);
}
</script>



Se pueden hacer muchas cosas: rectángulos, círculos, elipses, caminos, texto,
imágenes, gradientes, transformaciones.




                                Canvas
<svg>
<svg id="flag" height="200" xmlns="http://www.w3.org/2000/svg">
  <circle id="redcircle" cx="50" cy="50" r="50" fill="red" />
  <rect id="redrect" width="300" height="100" fill="white" />
  <line x1="0" y1="0" x2="200" y2="100"
          style="stroke:red;stroke­width:2"/>
  <ellipse cx="100" cy="50" rx="100" ry="50" fill="red" />
  <polygon  points="20,10 300,20, 170,50" fill="white" />
  <polyline points="0,0 0,20 20,20 20,40 40,40 40,60" fill="red" />
</svg>




                                 SVG

Recommended for you

Html5 ux london
Html5 ux londonHtml5 ux london
Html5 ux london

The document discusses using HTML and CSS for prototyping. It covers HTML5 elements and structures, CSS3 features like gradients and shadows, and integrating HTML5 shiv and Modernizer to support older browsers. Recommendations include using semantic HTML5 elements instead of divs, updating reset styles, and simple jQuery examples. The goal is to leverage modern web standards for interactive prototyping.

prototypinghtml5css3
Progressive Prototyping w/HTML5, CSS3 and jQuery
Progressive Prototyping w/HTML5, CSS3 and jQueryProgressive Prototyping w/HTML5, CSS3 and jQuery
Progressive Prototyping w/HTML5, CSS3 and jQuery

The document discusses using HTML and CSS for prototyping. It provides guidance on setting expectations and only prototyping necessary features. HTML5 semantic tags and structures are covered, along with tips for styling buttons and forms with CSS3 features like gradients, shadows and rounded corners. The document also addresses browser compatibility issues and includes resources for further information.

prototypinguxlxhtml5
Prototyping w/HTML5 and CSS3
Prototyping w/HTML5 and CSS3Prototyping w/HTML5 and CSS3
Prototyping w/HTML5 and CSS3

This document discusses progressive prototyping as a design process. It emphasizes that prototyping allows designers to fail in a low-cost environment and iterate on their designs through testing. Different levels of prototyping fidelity are presented, from simple sketches to higher-fidelity visual prototypes. The document recommends starting with simple sketches and adding more details in subsequent rounds of graybox prototyping. It also provides examples of HTML5 and CSS3 techniques that can be used to create interactive prototypes, including new HTML5 input types, CSS3 selectors, and properties for styling buttons. Overall, the document promotes prototyping as a better way to validate designs through an iterative process of testing and refining ideas.

prototypinghtml5css3
<input>
<input
  type="search"                            search box
  type="number"                            spinbox
  type="range"                             slider
  type="color"                             color picker
  type="tel"                               telephone number
  type="url"                               web address
  type="email"                             email address
  type="date|time|month|week|datetime"
  required autofocus placeholder=”Type here...”
/>




                        Formularios
<datalist>
<input type=”text” list="cars" />
<datalist id="cars">
  <option value="BMW">
  <option value="Ford">
  <option value="Volvo">
</datalist>



<keygen>
<form action="signup.asp" method="post">
  user: <input type="text" name="username" />
  encryption: <keygen name="security" />
  <input type="submit" />
</form>




                       Formularios
<menu> + <command>
<menu>
  <command onclick="alert('first!')" label="Do 1st Command"/>
  <command onclick="alert('second!')" label="Do 2nd Command"/>
  <command onclick="alert('third!')" label="Do 3rd Command"/>
</menu>



<datagrid>
<datagrid>
  <table ...>
</datagrid>




                Etiquetas interactivas
<details>
Dive into HTML5 
<details open>
  <legend>Pilgrim, M. (2011)</legend>
  <p>
    Mark Pilgrim, Dive into HTML5, 
    <a href=”http://diveintohtml5.org”>updated!</a>.
  </p>    
</details>




                Etiquetas interactivas

Recommended for you

JavaScript Training
JavaScript TrainingJavaScript Training
JavaScript Training

This document provides an overview of JavaScript and how to embed it in HTML documents. It includes examples of common JavaScript concepts like variables, functions, conditionals, loops, and events. Code snippets demonstrate how to use JavaScript for tasks like form validation, asynchronous calls, and advanced user interfaces. The document is intended to teach basic JavaScript language constructs and usage.

javascripttraining
Web Projects: From Theory To Practice
Web Projects: From Theory To PracticeWeb Projects: From Theory To Practice
Web Projects: From Theory To Practice

There's always a gap between theoretical knowledge and practice. Particularly, how to start you first web project when you are familiar with HTML, JS, and CSS. This presentation covers such aspects as project functionality, modeling, file organization, building initial layout with HTML, insights of CSS, and jQuery.

htmlsite constructionhow-to
Aspekty prawne monitorowania aktywności użytkowników komputerów firmowych
Aspekty prawne monitorowania aktywności użytkowników komputerów firmowychAspekty prawne monitorowania aktywności użytkowników komputerów firmowych
Aspekty prawne monitorowania aktywności użytkowników komputerów firmowych
bezpieczeństwo informacjimonitoring pracownikówcyberzagrożenia
<figure> + 
<figcaption>
<figure>
  <img src=”fig1.jpg” title=”Graphic” />
  <figcaption>Figure 1. Overall scores.</figcaption>
</figure>



<wbr>
<p>You can break the line here<wbr> or here<wbr>, or even here<wbr>.</p>




                       Otras etiquetas
En CSS
E[att^=”val”]
E[att$=”val”]
E[att*=”val”]
                                   E:empty
E:root                             E:target
E:nth­child(n)                     E:enabled
E:nth­last­child(n)                E:disabled
E:nth­of­type(n)                   E:checked
E:nth­last­of­type(n)              E:selection
E:last­child
                                   E:not(selector)
E:first­of­type                    E ~ F
E:last­of­type
E:only­child
E:only­of­type




                  Nuevos selectores
http://www.456bereastreet.com/archive/200601/css_3_selectors_explained/
border­radius
border­top­left­radius
border­top­right­radius
border­bottom­right­radius
border­bottom­left­radius

­webkit­border­radius
­webkit­border­top­left­radius
­webkit­border­top­right­radius
­webkit­border­bottom­right­radius
­webkit­border­bottom­left­radius

­moz­border­radius
­moz­border­radius­topleft
­moz­border­radius­topright
­moz­border­radius­bottomright
­moz­border­radius­bottomleft




              Bordes redondeados

Recommended for you

John wood social entrepreneur
John wood social entrepreneurJohn wood social entrepreneur
John wood social entrepreneur

John Wood was born in 1964 in Connecticut and grew up in Pennsylvania. He has degrees from the University of Colorado and Northwestern University. He worked at Microsoft from 1991-1999 before taking a vacation to Nepal where he was inspired to start Books for Nepal after seeing a school with few books. This later became Room to Read, which he co-founded in 2001 to focus on literacy and gender equality in education in developing countries. As of 2012, Room to Read has benefited over 6 million children.

Siker képekben - John Maxwell nyomán
Siker képekben - John Maxwell nyománSiker képekben - John Maxwell nyomán
Siker képekben - John Maxwell nyomán

Gondolatok a sikerről: álomtól a cselekvésen át és a vezetésig. John C. Maxwell - Siker 101 könyve alapján Képek forrása: pexels.com

sikervezetősuccess
#skew {
   transform:skew(35deg);
}
#scale {
   transform:scale(1,0.5);
}
#rotate {
   transform:rotate(45deg);
}
#translate {
   transform:translate(10px, 20px);
}

#rotate­skew­scale­translate {
   transform:skew(30deg) scale(1.1,1.1) rotate(40deg) 
translate(10px, 20px);
}



                 Transformaciones
               http://css3.bradshawenterprises.com/
#id {
   ­webkit­transition: all 1s ease­in­out;
   ­moz­transition: all 1s ease­in­out;
   ­o­transition: all 1s ease­in­out;
   transition: all 1s ease­in­out;
}




                     Transiciones
@font­face {
  font­family: <a­remote­font­name>;
  src: <source> [,<source>]*;
  [font­weight: <weight>];
  [font­style: <style>];
}

@font­face {
  font­family: "Bitstream Vera Serif Bold";
  src: url("http://server.com/VeraSeBd.ttf");
}
   
body { font­family: "Bitstream Vera Serif Bold", serif }




                     @font-face
                    http://www.font-face.com
En JS

Recommended for you

Manejo alimentar de peixes98 (1)
Manejo alimentar de peixes98 (1)Manejo alimentar de peixes98 (1)
Manejo alimentar de peixes98 (1)

O documento discute o manejo alimentar de peixes em diferentes sistemas de criação. Apresenta as principais fontes protéicas e energéticas utilizadas nas rações de peixes, como farelo de soja, farinha de peixe e milho. Também descreve as formas físicas da ração, como peletizada e extrusada, e os métodos de fornecimento, manual ou por comedouros.

AMA Phoenix -- Delivering Happiness | 11.02.10
AMA Phoenix -- Delivering Happiness | 11.02.10AMA Phoenix -- Delivering Happiness | 11.02.10
AMA Phoenix -- Delivering Happiness | 11.02.10

Tony Hsieh, founder of Zappos, presents "Delivering Happiness: A Path to Profits, Passion and Purpose" at American Marketing Association, AMA Phoenix Chapter, Phoenix, Ariz., Nov. 2, 2010.

american marketing associationzapposama phoenix
Program metamorfosis juara rv2
Program metamorfosis juara rv2Program metamorfosis juara rv2
Program metamorfosis juara rv2

Kursus khas untuk pelajar lemah dan pelajar berisiko.

kursus pelajar lemahkursus pelajar berisiko
function get_location() {
  navigator.geolocation.getCurrentPosition(show_location);
}

function show_location(position) {
  var latitude = position.coords.latitude;
  var longitude = position.coords.longitude;
  alert('You are here: ('+latitude+','+longitude+')');
}




                  Geolocalización
function show_status() {
  var status = navigator.onLine ? 'Online' : 'Offline';
  alert('You are '+status);
}


Eventos nuevos:

   window.ononline
   window.onoffline




                      Offline / online
var foo = localStorage.getItem("bar");
// ...
localStorage.setItem("bar", foo);


var foo = localStorage["bar"];
// ...
localStorage["bar"] = foo;


Algunos navegadores soportan Web SQL Database (WebDB), pero no está
estandarizado.




                      Local Storage
history.pushState(json, title, url);

addEvent(window, 'popstate', function (event) {
  var data = event.state;
  //...
});




                     Web History

Recommended for you

Saint presentation
Saint presentationSaint presentation
Saint presentation

This document discusses how the media project "Saint" represents social groups. It notes that the main character Saint is a strong, independent female protagonist from a middle-class family in her early 20s. She wears simple clothing but has a sense of fashion. Her role portrays women as able to accomplish tasks typically done by men and shows women's strong nature. Despite her lower status, Saint is able to help her community. The document also discusses potential media institutions that could distribute the project, such as film companies, television stations, magazines, websites, and social media. It notes the project attracted audiences by using conventions of an action/adventure genre with a female protagonist, contrasting typical male protagonists and showing a different

Presentation global 20111124_rev03
Presentation global 20111124_rev03Presentation global 20111124_rev03
Presentation global 20111124_rev03
My Music Video Plan
My Music Video PlanMy Music Video Plan
My Music Video Plan

This music video plan summarizes the key details for a video to Beyonce's song "Disappear": 1) The song tells the narrative of two young couples dealing with relationship obstacles due to distance or work obligations. 2) The plan focuses on creative editing and storytelling to portray the emotional lyrics and themes of the song. 3) Main characters Rusne and Louisa will be portrayed as 17-year-old adults experiencing relatable relationship challenges through locations like a town, park, or house.

Todo esto, ¿para cuándo?
En teoría, HTML5 no será un
   estándar hasta 2022
En la práctica, soportadas muchas cosas
           http://www.findmebyip.com/litmus
Buena práctica: detectar
funcionalidades soportadas

Recommended for you

Secure remote access in solaris 9
Secure remote access in solaris 9Secure remote access in solaris 9
Secure remote access in solaris 9

This document discusses secure remote access using Solaris Secure Shell. It describes network threats like password theft, session hijacking, and man-in-the-middle attacks. It explains how Solaris Secure Shell provides strong authentication, encryption, and session integrity to protect against these threats when accessing systems remotely. It also compares Solaris Secure Shell to IPsec and their suitability for different environments.

solarissecureremote
Sapuki sig 2013
Sapuki sig 2013Sapuki sig 2013
Sapuki sig 2013

This document discusses SAP HANA landscape and operations. It covers HANA editions and scenarios, the HANA database lifecycle including patching and backup, using HANA as a platform, performance monitoring, data load scenarios using tools like BODS, SLT, SRS and ESP, and provides contact information for the author.

John wood social entrepreneur
John wood social entrepreneurJohn wood social entrepreneur
John wood social entrepreneur

John Wood was born in 1964 in Connecticut and grew up in Pennsylvania. He has a bachelor's degree from the University of Colorado and an MBA from Northwestern University. From 1991-1999, Wood worked at Microsoft, holding several director positions. In 1998, while trekking in Nepal, Wood saw a school with few books and no computers. This inspired him to collect book donations from friends and family. He later co-founded Room to Read in 2001 to increase literacy and gender equality in education in developing countries. As of 2012, Room to Read has established over 1,600 schools and 13,500 libraries benefiting 6 million children.

function supports_canvas() {
  return !!document.createElement('canvas').getContext;
  //return Modernizr.canvas;
}

function supports_video() {
  return !!document.createElement('video').canPlayType;
  //return Modernizr.video;
}

function supports_ogg_theora_video() {
  if (!supports_video()) { return false; }
  var v = document.createElement("video");
  return v.canPlayType('video/ogg; codecs="theora, 
vorbis"');
  //return Modernizr.video.ogg;
}




        Detección de funcionalidades
Modernizr
http://www.modernizr.com
¿Y si no hay soporte?
       Polyfills
<!­­[if lt IE 9]>
<script>
  var e = ("abbr,article,aside,audio,canvas,datalist," +
    "details,figure,footer,header,hgroup,mark,menu,meter," +
    "nav,output,progress,section,time,video").split(',');
  for (var i = 0; i < e.length; i++) {
    document.createElement(e[i]);
  }
</script>
<![endif]­­>




              ¿Polyqué? Polyfills ;-)

Recommended for you

Xara thessaloniki
Xara thessalonikiXara thessaloniki
Xara thessaloniki

Thessaloniki is the second largest city in Greece located in northern Macedonia. It has a rich history and many sights to visit such as the Arch of Triumph in the city center, the Roman Odeon in the ancient market, and Aristotle's Square in the heart of the city. Other attractions include the White Tower, music hall, Science Center and Technology Museum, as well as some beautiful neoclassical buildings.

asi se voto
asi se votoasi se voto
asi se voto

asi voto la gente

jonutatabascopalizada
A2 d laser
A2 d laserA2 d laser
A2 d laser

The document discusses the basic hardware components of a LiDAR system. It explains that a LiDAR receiver requires an analog-to-digital converter (ADC) to efficiently process received signals in digital form. A flash ADC is preferred for direct conversion due to its extremely fast sampling rate of over 100 MSps and simple hardware. However, flash ADCs are difficult to implement at resolutions over 8 bits, so commercial LiDAR systems use a half flash technique employing two ADCs to achieve 12-bit resolution.

Polyfills
https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-browser-Polyfills
Para saber más...
W3C
http://dev.w3.org/html5/spec/Overview.html
WHATWG
http://whatwg.org/html

Recommended for you

HPMC - Mission Ministry Team
HPMC - Mission Ministry TeamHPMC - Mission Ministry Team
HPMC - Mission Ministry Team

Harvest Pointe believes in obeying Jesus. We do this through different mission opportunities, serving our city. These are some of the different ministries Harvest Pointe is involved with. Check us out at harvestpointe.com for more information.

religionmethodistmissions
Afroditi
AfroditiAfroditi
Afroditi

Afroditi is a 14-year-old girl who lives in Alexandria with her parents and brother. She has 3 older sisters and 1 older brother who attend university in Thessaloniki. Her hobbies include photography, painting, playing piano and guitar, basketball, choir, folk dancing, watching TV, listening to music, and traveling. She speaks English and has some knowledge of German and Italian. Her favorite school subjects are math, history, PE, and arts. She aims to become a teacher or architect in the future.

Presentation1
Presentation1Presentation1
Presentation1

John Wood quit his successful career at Microsoft to found Room to Read after being inspired on a trek through Nepal where he discovered a school with hundreds of children but less than 20 books. He has since grown Room to Read into an organization operating literacy and girls' education programs across Asia and Africa, impacting over 10 million children. Through his work and bestselling book Leaving Microsoft to Change the World, John Wood promotes the importance of education, entrepreneurship, and using business skills to make a positive social impact.

Dive into HTML5
 http://diveintohtml5.org/
HTML5 Rocks
http://www.html5rocks.com
Improving the Performance of your HTML5 App
      http://www.html5rocks.com/tutorials/speed/html5/
HTML 5 Demos and Examples
      http://html5demos.com

Recommended for you

Women's Rights
Women's RightsWomen's Rights
Women's Rights

Women's rights refer to the rights and freedoms claimed for women and girls worldwide, such as the right to vote, hold public office, receive an education, own property, and enter into legal contracts. However, in some parts of the world, particularly in third world countries, women still face challenges in fully exercising these rights and freedoms as they experience violence, harassment, and lack of bodily autonomy. Most major religions also recognize some women's rights, though interpretations have varied over time and place. It is hoped that in the 21st century, societies can progress to a point where all people, regardless of gender, live with mutual respect and freedom.

HTML 5 - Overview
HTML 5 - OverviewHTML 5 - Overview
HTML 5 - Overview

HTML 5 is the latest version of the HTML standard. It includes several new elements and features to improve structure and behavior. Some key changes include new semantic elements like <article>, <aside>, <header>, and <footer>; built-in support for audio and video; the <canvas> element for drawing graphics; and forms with new input types. HTML 5 aims to simplify HTML and separate structure and presentation, making code cleaner and pages more accessible. It is developed jointly by the WHATWG and W3C organizations.

phppaideguaphphtml5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5

Familiar HTML5 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5 HTML5 Conference Miyazaki 2013 2013/02/10 ひらい さだあき @sada_h

html5html5-miyazakihtml5j
Muchas gracias ;-)
Referencias
●   Dive into HTML5.
●   W3Schools.
●   IBM developer networks.
●   Quackit.
●   HTML5 Rocks.
●   HTML5 Demos and Examples.
All images are property of their own
owners*, content is licensed under a
Creative Commons by-sa 3.0 license




 * W3C, WHATWG, Dive into HTML5, HTML5 Rocks, Modernizr, FindmebyIP

More Related Content

What's hot

Html5 and web technology update
Html5 and web technology updateHtml5 and web technology update
Html5 and web technology update
Doug Domeny
 
Introduction to Html5
Introduction to Html5Introduction to Html5
Introduction to Html5
www.netgains.org
 
Repaso rápido a los nuevos estándares web
Repaso rápido a los nuevos estándares webRepaso rápido a los nuevos estándares web
Repaso rápido a los nuevos estándares web
Pablo Garaizar
 
Developing jQuery Plugins with Ease
Developing jQuery Plugins with EaseDeveloping jQuery Plugins with Ease
Developing jQuery Plugins with Ease
westhoff
 
Introduction to web components
Introduction to web componentsIntroduction to web components
Introduction to web components
Marc Bächinger
 
Progressive Enhancement with JavaScript and Ajax
Progressive Enhancement with JavaScript and AjaxProgressive Enhancement with JavaScript and Ajax
Progressive Enhancement with JavaScript and Ajax
Christian Heilmann
 
HTML 5 & CSS 3
HTML 5 & CSS 3HTML 5 & CSS 3
HTML 5 & CSS 3
Kevin van Dijk
 
What you need to know bout html5
What you need to know bout html5What you need to know bout html5
What you need to know bout html5
Kevin DeRudder
 
Plone Interactivity
Plone InteractivityPlone Interactivity
Plone Interactivity
Eric Steele
 
Google’s PRPL Web development pattern
Google’s PRPL Web development patternGoogle’s PRPL Web development pattern
Google’s PRPL Web development pattern
Jeongkyu Shin
 
Netvibes UWA workshop at ParisWeb 2007
Netvibes UWA workshop at ParisWeb 2007Netvibes UWA workshop at ParisWeb 2007
Netvibes UWA workshop at ParisWeb 2007
Netvibes
 
jQuery Mobile & PhoneGap
jQuery Mobile & PhoneGapjQuery Mobile & PhoneGap
jQuery Mobile & PhoneGap
Swiip
 
Open Source Ajax Solution @OSDC.tw 2009
Open Source Ajax  Solution @OSDC.tw 2009Open Source Ajax  Solution @OSDC.tw 2009
Open Source Ajax Solution @OSDC.tw 2009
Robbie Cheng
 
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....HTML5 (and friends) - History, overview and current status - jsDay Verona 11....
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....
Patrick Lauke
 
Ditching jQuery Madison
Ditching jQuery MadisonDitching jQuery Madison
Ditching jQuery Madison
Hao Luo
 
Html5 ux london
Html5 ux londonHtml5 ux london
Html5 ux london
Todd Zaki Warfel
 
Progressive Prototyping w/HTML5, CSS3 and jQuery
Progressive Prototyping w/HTML5, CSS3 and jQueryProgressive Prototyping w/HTML5, CSS3 and jQuery
Progressive Prototyping w/HTML5, CSS3 and jQuery
Todd Zaki Warfel
 
Prototyping w/HTML5 and CSS3
Prototyping w/HTML5 and CSS3Prototyping w/HTML5 and CSS3
Prototyping w/HTML5 and CSS3
Todd Zaki Warfel
 
JavaScript Training
JavaScript TrainingJavaScript Training
JavaScript Training
Ramindu Deshapriya
 
Web Projects: From Theory To Practice
Web Projects: From Theory To PracticeWeb Projects: From Theory To Practice
Web Projects: From Theory To Practice
Sergey Bolshchikov
 

What's hot (20)

Html5 and web technology update
Html5 and web technology updateHtml5 and web technology update
Html5 and web technology update
 
Introduction to Html5
Introduction to Html5Introduction to Html5
Introduction to Html5
 
Repaso rápido a los nuevos estándares web
Repaso rápido a los nuevos estándares webRepaso rápido a los nuevos estándares web
Repaso rápido a los nuevos estándares web
 
Developing jQuery Plugins with Ease
Developing jQuery Plugins with EaseDeveloping jQuery Plugins with Ease
Developing jQuery Plugins with Ease
 
Introduction to web components
Introduction to web componentsIntroduction to web components
Introduction to web components
 
Progressive Enhancement with JavaScript and Ajax
Progressive Enhancement with JavaScript and AjaxProgressive Enhancement with JavaScript and Ajax
Progressive Enhancement with JavaScript and Ajax
 
HTML 5 & CSS 3
HTML 5 & CSS 3HTML 5 & CSS 3
HTML 5 & CSS 3
 
What you need to know bout html5
What you need to know bout html5What you need to know bout html5
What you need to know bout html5
 
Plone Interactivity
Plone InteractivityPlone Interactivity
Plone Interactivity
 
Google’s PRPL Web development pattern
Google’s PRPL Web development patternGoogle’s PRPL Web development pattern
Google’s PRPL Web development pattern
 
Netvibes UWA workshop at ParisWeb 2007
Netvibes UWA workshop at ParisWeb 2007Netvibes UWA workshop at ParisWeb 2007
Netvibes UWA workshop at ParisWeb 2007
 
jQuery Mobile & PhoneGap
jQuery Mobile & PhoneGapjQuery Mobile & PhoneGap
jQuery Mobile & PhoneGap
 
Open Source Ajax Solution @OSDC.tw 2009
Open Source Ajax  Solution @OSDC.tw 2009Open Source Ajax  Solution @OSDC.tw 2009
Open Source Ajax Solution @OSDC.tw 2009
 
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....HTML5 (and friends) - History, overview and current status - jsDay Verona 11....
HTML5 (and friends) - History, overview and current status - jsDay Verona 11....
 
Ditching jQuery Madison
Ditching jQuery MadisonDitching jQuery Madison
Ditching jQuery Madison
 
Html5 ux london
Html5 ux londonHtml5 ux london
Html5 ux london
 
Progressive Prototyping w/HTML5, CSS3 and jQuery
Progressive Prototyping w/HTML5, CSS3 and jQueryProgressive Prototyping w/HTML5, CSS3 and jQuery
Progressive Prototyping w/HTML5, CSS3 and jQuery
 
Prototyping w/HTML5 and CSS3
Prototyping w/HTML5 and CSS3Prototyping w/HTML5 and CSS3
Prototyping w/HTML5 and CSS3
 
JavaScript Training
JavaScript TrainingJavaScript Training
JavaScript Training
 
Web Projects: From Theory To Practice
Web Projects: From Theory To PracticeWeb Projects: From Theory To Practice
Web Projects: From Theory To Practice
 

Viewers also liked

Aspekty prawne monitorowania aktywności użytkowników komputerów firmowych
Aspekty prawne monitorowania aktywności użytkowników komputerów firmowychAspekty prawne monitorowania aktywności użytkowników komputerów firmowych
Aspekty prawne monitorowania aktywności użytkowników komputerów firmowych
Cyberlaw Beata Marek
 
John wood social entrepreneur
John wood social entrepreneurJohn wood social entrepreneur
John wood social entrepreneur
Nathan Ong
 
Siker képekben - John Maxwell nyomán
Siker képekben - John Maxwell nyománSiker képekben - John Maxwell nyomán
Siker képekben - John Maxwell nyomán
Áron Sipos
 
Manejo alimentar de peixes98 (1)
Manejo alimentar de peixes98 (1)Manejo alimentar de peixes98 (1)
Manejo alimentar de peixes98 (1)
Fábio Cândido de Jesus
 
AMA Phoenix -- Delivering Happiness | 11.02.10
AMA Phoenix -- Delivering Happiness | 11.02.10AMA Phoenix -- Delivering Happiness | 11.02.10
AMA Phoenix -- Delivering Happiness | 11.02.10
AMA Phoenix
 
Program metamorfosis juara rv2
Program metamorfosis juara rv2Program metamorfosis juara rv2
Program metamorfosis juara rv2
thecrestacademy
 
Saint presentation
Saint presentationSaint presentation
Saint presentation
kayy2
 
Presentation global 20111124_rev03
Presentation global 20111124_rev03Presentation global 20111124_rev03
Presentation global 20111124_rev03
mediba_inc
 
My Music Video Plan
My Music Video PlanMy Music Video Plan
My Music Video Plan
kayy2
 
Secure remote access in solaris 9
Secure remote access in solaris 9Secure remote access in solaris 9
Secure remote access in solaris 9
Tintus Ardi
 
Sapuki sig 2013
Sapuki sig 2013Sapuki sig 2013
Sapuki sig 2013
Chris Kernaghan
 
John wood social entrepreneur
John wood social entrepreneurJohn wood social entrepreneur
John wood social entrepreneur
Nathan Ong
 
Xara thessaloniki
Xara thessalonikiXara thessaloniki
Xara thessaloniki
etwinning100
 
asi se voto
asi se votoasi se voto
asi se voto
Rogelio Lopez
 
A2 d laser
A2 d laserA2 d laser
A2 d laser
Sandeep Sasidharan
 
HPMC - Mission Ministry Team
HPMC - Mission Ministry TeamHPMC - Mission Ministry Team
HPMC - Mission Ministry Team
Marshall Daigre
 
Afroditi
AfroditiAfroditi
Afroditi
etwinning100
 
Presentation1
Presentation1Presentation1
Presentation1
Nathan Ong
 
Women's Rights
Women's RightsWomen's Rights
Women's Rights
Ahmet Ustun
 

Viewers also liked (20)

Aspekty prawne monitorowania aktywności użytkowników komputerów firmowych
Aspekty prawne monitorowania aktywności użytkowników komputerów firmowychAspekty prawne monitorowania aktywności użytkowników komputerów firmowych
Aspekty prawne monitorowania aktywności użytkowników komputerów firmowych
 
20.11.14
20.11.1420.11.14
20.11.14
 
John wood social entrepreneur
John wood social entrepreneurJohn wood social entrepreneur
John wood social entrepreneur
 
Siker képekben - John Maxwell nyomán
Siker képekben - John Maxwell nyománSiker képekben - John Maxwell nyomán
Siker képekben - John Maxwell nyomán
 
Manejo alimentar de peixes98 (1)
Manejo alimentar de peixes98 (1)Manejo alimentar de peixes98 (1)
Manejo alimentar de peixes98 (1)
 
AMA Phoenix -- Delivering Happiness | 11.02.10
AMA Phoenix -- Delivering Happiness | 11.02.10AMA Phoenix -- Delivering Happiness | 11.02.10
AMA Phoenix -- Delivering Happiness | 11.02.10
 
Program metamorfosis juara rv2
Program metamorfosis juara rv2Program metamorfosis juara rv2
Program metamorfosis juara rv2
 
Saint presentation
Saint presentationSaint presentation
Saint presentation
 
Presentation global 20111124_rev03
Presentation global 20111124_rev03Presentation global 20111124_rev03
Presentation global 20111124_rev03
 
My Music Video Plan
My Music Video PlanMy Music Video Plan
My Music Video Plan
 
Secure remote access in solaris 9
Secure remote access in solaris 9Secure remote access in solaris 9
Secure remote access in solaris 9
 
Sapuki sig 2013
Sapuki sig 2013Sapuki sig 2013
Sapuki sig 2013
 
John wood social entrepreneur
John wood social entrepreneurJohn wood social entrepreneur
John wood social entrepreneur
 
Xara thessaloniki
Xara thessalonikiXara thessaloniki
Xara thessaloniki
 
asi se voto
asi se votoasi se voto
asi se voto
 
A2 d laser
A2 d laserA2 d laser
A2 d laser
 
HPMC - Mission Ministry Team
HPMC - Mission Ministry TeamHPMC - Mission Ministry Team
HPMC - Mission Ministry Team
 
Afroditi
AfroditiAfroditi
Afroditi
 
Presentation1
Presentation1Presentation1
Presentation1
 
Women's Rights
Women's RightsWomen's Rights
Women's Rights
 

Similar to html5

HTML 5 - Overview
HTML 5 - OverviewHTML 5 - Overview
HTML 5 - Overview
Marcelio Leal
 
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Sadaaki HIRAI
 
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考えるIt is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
Sadaaki HIRAI
 
Html5 For Jjugccc2009fall
Html5 For Jjugccc2009fallHtml5 For Jjugccc2009fall
Html5 For Jjugccc2009fall
Shumpei Shiraishi
 
HTML5
HTML5HTML5
Attractive HTML5~開発者の視点から~
Attractive HTML5~開発者の視点から~Attractive HTML5~開発者の視点から~
Attractive HTML5~開発者の視点から~
Sho Ito
 
Html5
Html5Html5
Brave new world of HTML5
Brave new world of HTML5Brave new world of HTML5
Brave new world of HTML5
Chris Mills
 
webinale2011_Chris Mills_Brave new world of HTML5Html5
webinale2011_Chris Mills_Brave new world of HTML5Html5webinale2011_Chris Mills_Brave new world of HTML5Html5
webinale2011_Chris Mills_Brave new world of HTML5Html5
smueller_sandsmedia
 
前端概述
前端概述前端概述
前端概述
Ethan Zhang
 
Html5 - Novas Tags na Prática!
Html5 - Novas Tags na Prática!Html5 - Novas Tags na Prática!
Html5 - Novas Tags na Prática!
Rômulo Reis de Oliveira
 
Html5 intro
Html5 introHtml5 intro
Html5 intro
Kevin DeRudder
 
Html5 intro
Html5 introHtml5 intro
Html5 intro
Wilfred Nas
 
关于 Html5 那点事
关于 Html5 那点事关于 Html5 那点事
关于 Html5 那点事
Sofish Lin
 
Html5 and css3
Html5 and css3Html5 and css3
Html5 and css3
Deniss Platonov
 
HTML5 - Future of Web
HTML5 - Future of WebHTML5 - Future of Web
HTML5 - Future of Web
Mirza Asif
 
5 x HTML5 worth using in APEX (5)
5 x HTML5 worth using in APEX (5)5 x HTML5 worth using in APEX (5)
5 x HTML5 worth using in APEX (5)
Christian Rokitta
 
The Devil and HTML5
The Devil and HTML5The Devil and HTML5
The Devil and HTML5
Myles Braithwaite
 
5 ways to embrace HTML5 today
5 ways to embrace HTML5 today5 ways to embrace HTML5 today
5 ways to embrace HTML5 today
Daniel Ryan
 
Edge of the Web
Edge of the WebEdge of the Web
Edge of the Web
Todd Anglin
 

Similar to html5 (20)

HTML 5 - Overview
HTML 5 - OverviewHTML 5 - Overview
HTML 5 - Overview
 
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
 
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考えるIt is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
It is not HTML5. but ... / HTML5ではないサイトからHTML5を考える
 
Html5 For Jjugccc2009fall
Html5 For Jjugccc2009fallHtml5 For Jjugccc2009fall
Html5 For Jjugccc2009fall
 
HTML5
HTML5HTML5
HTML5
 
Attractive HTML5~開発者の視点から~
Attractive HTML5~開発者の視点から~Attractive HTML5~開発者の視点から~
Attractive HTML5~開発者の視点から~
 
Html5
Html5Html5
Html5
 
Brave new world of HTML5
Brave new world of HTML5Brave new world of HTML5
Brave new world of HTML5
 
webinale2011_Chris Mills_Brave new world of HTML5Html5
webinale2011_Chris Mills_Brave new world of HTML5Html5webinale2011_Chris Mills_Brave new world of HTML5Html5
webinale2011_Chris Mills_Brave new world of HTML5Html5
 
前端概述
前端概述前端概述
前端概述
 
Html5 - Novas Tags na Prática!
Html5 - Novas Tags na Prática!Html5 - Novas Tags na Prática!
Html5 - Novas Tags na Prática!
 
Html5 intro
Html5 introHtml5 intro
Html5 intro
 
Html5 intro
Html5 introHtml5 intro
Html5 intro
 
关于 Html5 那点事
关于 Html5 那点事关于 Html5 那点事
关于 Html5 那点事
 
Html5 and css3
Html5 and css3Html5 and css3
Html5 and css3
 
HTML5 - Future of Web
HTML5 - Future of WebHTML5 - Future of Web
HTML5 - Future of Web
 
5 x HTML5 worth using in APEX (5)
5 x HTML5 worth using in APEX (5)5 x HTML5 worth using in APEX (5)
5 x HTML5 worth using in APEX (5)
 
The Devil and HTML5
The Devil and HTML5The Devil and HTML5
The Devil and HTML5
 
5 ways to embrace HTML5 today
5 ways to embrace HTML5 today5 ways to embrace HTML5 today
5 ways to embrace HTML5 today
 
Edge of the Web
Edge of the WebEdge of the Web
Edge of the Web
 

Recently uploaded

Project on computer by saurabh very good 😊
Project on computer by saurabh very good 😊Project on computer by saurabh very good 😊
Project on computer by saurabh very good 😊
Saurabh computer
 
Greater Kailash @ℂall @Girls ꧁❤ 9873940964 ❤꧂VIP Vishakha Singla Top Model Safe
Greater Kailash @ℂall @Girls ꧁❤ 9873940964 ❤꧂VIP Vishakha Singla Top Model SafeGreater Kailash @ℂall @Girls ꧁❤ 9873940964 ❤꧂VIP Vishakha Singla Top Model Safe
Greater Kailash @ℂall @Girls ꧁❤ 9873940964 ❤꧂VIP Vishakha Singla Top Model Safe
kumkum tuteja$A17
 
十大欧洲杯投注app平台-十大靠谱欧洲杯投注app官方平台 |【​网址​🎉ac10.net🎉​】
十大欧洲杯投注app平台-十大靠谱欧洲杯投注app官方平台 |【​网址​🎉ac10.net🎉​】十大欧洲杯投注app平台-十大靠谱欧洲杯投注app官方平台 |【​网址​🎉ac10.net🎉​】
十大欧洲杯投注app平台-十大靠谱欧洲杯投注app官方平台 |【​网址​🎉ac10.net🎉​】
antonellispunches643
 
Mastering Web Design: Essential Principles and Techniques for Modern Websites
Mastering Web Design: Essential Principles and Techniques for Modern WebsitesMastering Web Design: Essential Principles and Techniques for Modern Websites
Mastering Web Design: Essential Principles and Techniques for Modern Websites
webOdoctor Inc
 
Glasgow University degree Certificate
Glasgow University degree CertificateGlasgow University degree Certificate
Glasgow University degree Certificate
tezeqes
 
Design Impulse: Boost the power of design
Design Impulse: Boost the power of designDesign Impulse: Boost the power of design
Design Impulse: Boost the power of design
Pieter van Langen
 
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Neha Singla Top Model Safe
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Neha Singla Top Model SafePaharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Neha Singla Top Model Safe
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Neha Singla Top Model Safe
dakshishsingh98798
 
Nehru Place @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model Safe
Nehru Place @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model SafeNehru Place @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model Safe
Nehru Place @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model Safe
jiya khan$A17
 
A Green City is an urban area that prioritizes sustainability
A Green City is an urban area that prioritizes sustainabilityA Green City is an urban area that prioritizes sustainability
A Green City is an urban area that prioritizes sustainability
Mostafa Abd Elrahman
 
Doc3boq.docx sjnnw wimow womowmmo wekmomopmp
Doc3boq.docx sjnnw wimow womowmmo wekmomopmpDoc3boq.docx sjnnw wimow womowmmo wekmomopmp
Doc3boq.docx sjnnw wimow womowmmo wekmomopmp
Dhio3
 
de-on-thi-vstep-bac-4.pdf vjknvjknvkjdnvjkdnvj
de-on-thi-vstep-bac-4.pdf vjknvjknvkjdnvjkdnvjde-on-thi-vstep-bac-4.pdf vjknvjknvkjdnvjkdnvj
de-on-thi-vstep-bac-4.pdf vjknvjknvkjdnvjkdnvj
92nqjwr76x
 
Gender Equity in Architecture: Cultural Anthropology in Design Ideologies
Gender Equity in Architecture: Cultural Anthropology in Design IdeologiesGender Equity in Architecture: Cultural Anthropology in Design Ideologies
Gender Equity in Architecture: Cultural Anthropology in Design Ideologies
Aditi Sh.
 
A Journey Through Islamic Architecture.pdf
A Journey Through Islamic Architecture.pdfA Journey Through Islamic Architecture.pdf
A Journey Through Islamic Architecture.pdf
Mostafa Abd Elrahman
 
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model Safe
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model SafePaharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model Safe
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model Safe
jiya khan$A17
 
An Introduction to Housing: Core Concepts and Historical Evolution from Prehi...
An Introduction to Housing: Core Concepts and Historical Evolution from Prehi...An Introduction to Housing: Core Concepts and Historical Evolution from Prehi...
An Introduction to Housing: Core Concepts and Historical Evolution from Prehi...
Aditi Sh.
 
SMACNA - DUCT CONSTRUCTION STANDARDS-2005.pdf
SMACNA -  DUCT CONSTRUCTION STANDARDS-2005.pdfSMACNA -  DUCT CONSTRUCTION STANDARDS-2005.pdf
SMACNA - DUCT CONSTRUCTION STANDARDS-2005.pdf
Magdiel70
 
Surface Analysis Civil 3D using different tools
Surface Analysis Civil 3D using different toolsSurface Analysis Civil 3D using different tools
Surface Analysis Civil 3D using different tools
ManashChatterjee3
 
Portfolio of Family Coat of Arms, devised by Kasyanenko Rostyslav, ENG
Portfolio of Family Coat of Arms, devised by Kasyanenko Rostyslav, ENGPortfolio of Family Coat of Arms, devised by Kasyanenko Rostyslav, ENG
Portfolio of Family Coat of Arms, devised by Kasyanenko Rostyslav, ENG
Rostyslav Kasyanenko
 
Fall/winter Trend forcasting 2025 ppt .pdf
Fall/winter Trend forcasting 2025 ppt .pdfFall/winter Trend forcasting 2025 ppt .pdf
Fall/winter Trend forcasting 2025 ppt .pdf
Simran Choudhary
 
Product Showcase Presentation |slides sample.pptx
Product Showcase Presentation |slides sample.pptxProduct Showcase Presentation |slides sample.pptx
Product Showcase Presentation |slides sample.pptx
wojakmodern
 

Recently uploaded (20)

Project on computer by saurabh very good 😊
Project on computer by saurabh very good 😊Project on computer by saurabh very good 😊
Project on computer by saurabh very good 😊
 
Greater Kailash @ℂall @Girls ꧁❤ 9873940964 ❤꧂VIP Vishakha Singla Top Model Safe
Greater Kailash @ℂall @Girls ꧁❤ 9873940964 ❤꧂VIP Vishakha Singla Top Model SafeGreater Kailash @ℂall @Girls ꧁❤ 9873940964 ❤꧂VIP Vishakha Singla Top Model Safe
Greater Kailash @ℂall @Girls ꧁❤ 9873940964 ❤꧂VIP Vishakha Singla Top Model Safe
 
十大欧洲杯投注app平台-十大靠谱欧洲杯投注app官方平台 |【​网址​🎉ac10.net🎉​】
十大欧洲杯投注app平台-十大靠谱欧洲杯投注app官方平台 |【​网址​🎉ac10.net🎉​】十大欧洲杯投注app平台-十大靠谱欧洲杯投注app官方平台 |【​网址​🎉ac10.net🎉​】
十大欧洲杯投注app平台-十大靠谱欧洲杯投注app官方平台 |【​网址​🎉ac10.net🎉​】
 
Mastering Web Design: Essential Principles and Techniques for Modern Websites
Mastering Web Design: Essential Principles and Techniques for Modern WebsitesMastering Web Design: Essential Principles and Techniques for Modern Websites
Mastering Web Design: Essential Principles and Techniques for Modern Websites
 
Glasgow University degree Certificate
Glasgow University degree CertificateGlasgow University degree Certificate
Glasgow University degree Certificate
 
Design Impulse: Boost the power of design
Design Impulse: Boost the power of designDesign Impulse: Boost the power of design
Design Impulse: Boost the power of design
 
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Neha Singla Top Model Safe
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Neha Singla Top Model SafePaharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Neha Singla Top Model Safe
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Neha Singla Top Model Safe
 
Nehru Place @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model Safe
Nehru Place @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model SafeNehru Place @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model Safe
Nehru Place @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model Safe
 
A Green City is an urban area that prioritizes sustainability
A Green City is an urban area that prioritizes sustainabilityA Green City is an urban area that prioritizes sustainability
A Green City is an urban area that prioritizes sustainability
 
Doc3boq.docx sjnnw wimow womowmmo wekmomopmp
Doc3boq.docx sjnnw wimow womowmmo wekmomopmpDoc3boq.docx sjnnw wimow womowmmo wekmomopmp
Doc3boq.docx sjnnw wimow womowmmo wekmomopmp
 
de-on-thi-vstep-bac-4.pdf vjknvjknvkjdnvjkdnvj
de-on-thi-vstep-bac-4.pdf vjknvjknvkjdnvjkdnvjde-on-thi-vstep-bac-4.pdf vjknvjknvkjdnvjkdnvj
de-on-thi-vstep-bac-4.pdf vjknvjknvkjdnvjkdnvj
 
Gender Equity in Architecture: Cultural Anthropology in Design Ideologies
Gender Equity in Architecture: Cultural Anthropology in Design IdeologiesGender Equity in Architecture: Cultural Anthropology in Design Ideologies
Gender Equity in Architecture: Cultural Anthropology in Design Ideologies
 
A Journey Through Islamic Architecture.pdf
A Journey Through Islamic Architecture.pdfA Journey Through Islamic Architecture.pdf
A Journey Through Islamic Architecture.pdf
 
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model Safe
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model SafePaharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model Safe
Paharganj @ℂall @Girls ꧁❤ 9873777170 ❤꧂VIP Ruhi Singla Top Model Safe
 
An Introduction to Housing: Core Concepts and Historical Evolution from Prehi...
An Introduction to Housing: Core Concepts and Historical Evolution from Prehi...An Introduction to Housing: Core Concepts and Historical Evolution from Prehi...
An Introduction to Housing: Core Concepts and Historical Evolution from Prehi...
 
SMACNA - DUCT CONSTRUCTION STANDARDS-2005.pdf
SMACNA -  DUCT CONSTRUCTION STANDARDS-2005.pdfSMACNA -  DUCT CONSTRUCTION STANDARDS-2005.pdf
SMACNA - DUCT CONSTRUCTION STANDARDS-2005.pdf
 
Surface Analysis Civil 3D using different tools
Surface Analysis Civil 3D using different toolsSurface Analysis Civil 3D using different tools
Surface Analysis Civil 3D using different tools
 
Portfolio of Family Coat of Arms, devised by Kasyanenko Rostyslav, ENG
Portfolio of Family Coat of Arms, devised by Kasyanenko Rostyslav, ENGPortfolio of Family Coat of Arms, devised by Kasyanenko Rostyslav, ENG
Portfolio of Family Coat of Arms, devised by Kasyanenko Rostyslav, ENG
 
Fall/winter Trend forcasting 2025 ppt .pdf
Fall/winter Trend forcasting 2025 ppt .pdfFall/winter Trend forcasting 2025 ppt .pdf
Fall/winter Trend forcasting 2025 ppt .pdf
 
Product Showcase Presentation |slides sample.pptx
Product Showcase Presentation |slides sample.pptxProduct Showcase Presentation |slides sample.pptx
Product Showcase Presentation |slides sample.pptx
 

html5