ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
the design
of HTML5
the design
of HTML5
the design
of HTML5
design
principles
We hold these Truths to be self-evident,
that all Men are created equal,
that they are endowed by their Creator with
certain unalienable Rights,
that among these are
Life, Liberty and the pursuit of Happiness.

¡ª«Íe Declaration Of Independence,
                     1776-07-04
From each according to his ability,
to each according to his need.



                                  ¡ªKarl Marx,
                                        1875
Do unto others as you would have them do unto you.




                       ¡ªJesus of Nazareth,
                                  ~30AD
Four legs good, two legs bad.




                           ¡ªGeorge Orwell,
                             Animal Farm
A robot may not injure a human being or, through
inaction, allow a human being to come to harm.

A robot must obey any orders given to it by human
beings, except where such orders would con?ict with
the First Law.

A robot must protect its own existence as long as such
protection does not con?ict with the First or Second
Law.
                               ¡ªIsaac Asimov,
                                     I, Robot
Principles such as simplicity and modularity
are the stu? of so¯Óware engineering;
decentralisation and tolerance
are the life and breath of Internet.


                       ¡ªTim Berners-Lee,
                       Principles of Design
HTML 2.0    1995
HTML 3.2    1997
HTML 4.0    1997
HTML 4.01   1999
XHTML 1.0   2000
XHTML 1.1   2001
XHTML 2
Be conservative in what you send;
be liberal in what you accept.



                         ¡ªJon Postel,
                «Íe Robustness Principle
WHATWG   2004
W3C      2007

  HTML5
the design
of HTML5
¬Ðis document describes the set of guiding principles
used by the HTML Working Group for the
development of HTML5. ¬Ðe principles o?er
guidance for the design of HTML in the areas of
compatibility, utility and interoperability.


         ¡ªHTML Design Principles
   w3.org/TR/html-design-principles
avoid
needless
complexity
Simple solutions are preferred to complex ones,
when possible.
HTML 4.01
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"
  "http://www.w3.org/TR/html4/strict.dtd">



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



HTML5                 <!DOCTYPE html>
HTML 4.01
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8">



XHTML 1.0
<?xml version="1.0" encoding="UTF-8"?>
<meta http-equiv="Content-Type"
content="text/html; charset=utf-8" />


HTML5                    <meta charset="utf-8">
<link rel="stylesheet" type="text/css"
href="file.css">


<script type="text/javascript">
</script>


HTML5
support
existing
content
Existing content o®¶en relies upon expected user agent
processing and behaviour to function as intended.
<img src=/slideshow/designofhtml5/5522540/"foo" alt="bar" />
<p class=/slideshow/designofhtml5/5522540/"foo">Hello world</p>

<img src=/slideshow/designofhtml5/5522540/"foo" alt="bar">
<p class=/slideshow/designofhtml5/5522540/"foo">Hello world

<IMG SRC=/slideshow/designofhtml5/5522540/"foo" ALT="bar">
<P CLASS=/slideshow/designofhtml5/5522540/"foo">Hello world</P>

<img src=foo alt=bar>
<p class=foo>Hello world</p>
Be conservative in what you send;
be liberal in what you accept.



                         ¡ªJon Postel,
                «Íe Robustness Principle
solve real
problems
Abstract architectures that don¡¯t address an existing
need are less favoured than pragmatic solutions to
problems that web content faces today.
(X)HTML
<h2><a href="/path/to/resource">Headline text</a></h2>
<p><a href="/path/to/resource">Paragraph text.</a></p>



HTML5
<a href="/path/to/resource">
<h2>Headline text</h2>
<p>Paragraph text.</p>
</a>
pave the
cowpaths
section   header
article    footer
aside     details
nav        figure
<body>
<div id="header">...</div>
<div id="navigation">...</div>
<div id="main">...</div>
<div id="sidebar">...</div>
<div id="footer">...</div>
</body>
<body>
<header>...</header>
<nav>...</nav>
<div id="main">...</div>
<aside>...</aside>
<footer>...</footer>
</body>
section   header
article    footer
aside     details
nav        figure
<div class="item">
<h2>...</h2>
<div class="meta">...</div>
<div class="content">
...
</div>
<div class="links">...</div>
</div>
<section class="item">
<header><h1>...</h1></header>
<footer class="meta">...</footer>
<div class="content">
...
</div>
<nav class="links">...</nav>
</section>
<section class="item">
<header><h1>...</h1></header>
<footer class="meta">...</footer>
<div class="content">
...
</div>
<nav class="links">...</nav>
</section>
I would in fact prefer, instead of <H1>, <H2> etc
for headings to have a nestable <SECTION>..
</SECTION> element, and a generic <H>..</H>
which at any level within the sections would produce
the required level of heading.


                        ¡ªTim Berners-Lee,
                                    1991
degrade
gracefully
HTML?5 document conformance requirements
should be designed so that Web content can
degrade gracefully in older or less capable user
agents, even when making use of new elements,
attributes, APIs and content models.
input type="number"
input type="search"
input type="range"
input type="email"
input type="date"
input type="url"
input type="number"
input type="search"
input type="search"
placeholder="e.g. salad or fish"
HTML5 Flash
video object
<video src=/slideshow/designofhtml5/5522540/"movie.mp4">

<!-- fallback content -->

</video>
<video src=/slideshow/designofhtml5/5522540/"movie.mp4">
<object data="movie.swf">
<!-- fallback content -->
</object>
</video>
<video src=/slideshow/designofhtml5/5522540/"movie.mp4">
<object data="movie.swf">
<a href=/slideshow/designofhtml5/5522540/"movie.mp4">download</a>
</object>
</video>
<video>
<source src=/slideshow/designofhtml5/5522540/"movie.mp4">
<source src="movie.ogv">
<object data="movie.swf">
<a href=/slideshow/designofhtml5/5522540/"movie.mp4">download</a>
</object>
</video>
<video>
<source src=/slideshow/designofhtml5/5522540/"movie.mp4">         1
<source src="movie.ogv">         2
<object data="movie.swf">        3
<a href=/slideshow/designofhtml5/5522540/"movie.mp4">download</a> 4
</object>
</video>
¬Ðe value of a network is proportional to the square
of the number of connected users of the system (n2).



                          ¡ªRobert Metcalfe
priority of
constituencies
In case of con?ict, consider
users over authors over
implementors over speci?ers
over theoretical purity.
So¯Óware, like all technologies, is inherently political.
Code inevitably re?ects the choices, biases and desires
of its creators.



                               ¡ªJamais Cascio
1. Make the most ¯Òequent tasks easy and less
¯Òequent tasks achievable.

2. Design for the 80%.

3. Privilege the Content Creator.

4. Make the default settings smart.
       ¡ªMark Boulton, Leisa Reichelt,
                            d7ux.org
Design for humans ?rst, machines second.




                 ¡ªMicroformats.org,
            «Íe microformats principles
¬Ðe e?ectiveness of the Internet as a public resource
depends upon interoperability (protocols, data
formats, content), inno¡~ation and decentralised
participation worldwide.

Transparent community-based processes promote
participation, accountability, and trust.

               ¡ª«Íe Mozilla Foundation,
                 «Íe Mozilla Manifesto
Rough consensus and running code.




                       ¡ª«Íe Tao of IETF
@adactio
adactio.com
books.alistapart.com

More Related Content

Viewers also liked (7)

À×Ö¾ÐË °Ù¶ÈÇ°¶Ë»ù´¡Æ½Ì¨Óë¼Ü¹¹·ÖÏí
À×Ö¾ÐË °Ù¶ÈÇ°¶Ë»ù´¡Æ½Ì¨Óë¼Ü¹¹·ÖÏíÀ×Ö¾ÐË °Ù¶ÈÇ°¶Ë»ù´¡Æ½Ì¨Óë¼Ü¹¹·ÖÏí
À×Ö¾ÐË °Ù¶ÈÇ°¶Ë»ù´¡Æ½Ì¨Óë¼Ü¹¹·ÖÏí
isnull
?
°¢Àï°Í°Í ÕÐƸ¼¼ÇÉÅàѵ
°¢Àï°Í°Í ÕÐƸ¼¼ÇÉÅàѵ°¢Àï°Í°Í ÕÐƸ¼¼ÇÉÅàѵ
°¢Àï°Í°Í ÕÐƸ¼¼ÇÉÅàѵ
isnull
?
Îҵı«²ú³Ü²Ô³Ù³ÜÖ®ÂÃ
Îҵı«²ú³Ü²Ô³Ù³ÜÖ®ÂÃÎҵı«²ú³Ü²Ô³Ù³ÜÖ®ÂÃ
Îҵı«²ú³Ü²Ô³Ù³ÜÖ®ÂÃ
isnull
?
Data on the web
Data on the webData on the web
Data on the web
isnull
?
Mysql introduction-and-performance-optimization
Mysql introduction-and-performance-optimizationMysql introduction-and-performance-optimization
Mysql introduction-and-performance-optimization
isnull
?
Ñîð© ÐÂÀ˲©¿ÍÇ°¶Ë¼Ü¹¹·ÖÏí
Ñîð© ÐÂÀ˲©¿ÍÇ°¶Ë¼Ü¹¹·ÖÏíÑîð© ÐÂÀ˲©¿ÍÇ°¶Ë¼Ü¹¹·ÖÏí
Ñîð© ÐÂÀ˲©¿ÍÇ°¶Ë¼Ü¹¹·ÖÏí
isnull
?
Daniela Barcelo Creative Director Portfolio 2014
Daniela Barcelo Creative Director Portfolio 2014Daniela Barcelo Creative Director Portfolio 2014
Daniela Barcelo Creative Director Portfolio 2014
Daniela Barcel¨®
?
À×Ö¾ÐË °Ù¶ÈÇ°¶Ë»ù´¡Æ½Ì¨Óë¼Ü¹¹·ÖÏí
À×Ö¾ÐË °Ù¶ÈÇ°¶Ë»ù´¡Æ½Ì¨Óë¼Ü¹¹·ÖÏíÀ×Ö¾ÐË °Ù¶ÈÇ°¶Ë»ù´¡Æ½Ì¨Óë¼Ü¹¹·ÖÏí
À×Ö¾ÐË °Ù¶ÈÇ°¶Ë»ù´¡Æ½Ì¨Óë¼Ü¹¹·ÖÏí
isnull
?
°¢Àï°Í°Í ÕÐƸ¼¼ÇÉÅàѵ
°¢Àï°Í°Í ÕÐƸ¼¼ÇÉÅàѵ°¢Àï°Í°Í ÕÐƸ¼¼ÇÉÅàѵ
°¢Àï°Í°Í ÕÐƸ¼¼ÇÉÅàѵ
isnull
?
Îҵı«²ú³Ü²Ô³Ù³ÜÖ®ÂÃ
Îҵı«²ú³Ü²Ô³Ù³ÜÖ®ÂÃÎҵı«²ú³Ü²Ô³Ù³ÜÖ®ÂÃ
Îҵı«²ú³Ü²Ô³Ù³ÜÖ®ÂÃ
isnull
?
Data on the web
Data on the webData on the web
Data on the web
isnull
?
Mysql introduction-and-performance-optimization
Mysql introduction-and-performance-optimizationMysql introduction-and-performance-optimization
Mysql introduction-and-performance-optimization
isnull
?
Ñîð© ÐÂÀ˲©¿ÍÇ°¶Ë¼Ü¹¹·ÖÏí
Ñîð© ÐÂÀ˲©¿ÍÇ°¶Ë¼Ü¹¹·ÖÏíÑîð© ÐÂÀ˲©¿ÍÇ°¶Ë¼Ü¹¹·ÖÏí
Ñîð© ÐÂÀ˲©¿ÍÇ°¶Ë¼Ü¹¹·ÖÏí
isnull
?
Daniela Barcelo Creative Director Portfolio 2014
Daniela Barcelo Creative Director Portfolio 2014Daniela Barcelo Creative Director Portfolio 2014
Daniela Barcelo Creative Director Portfolio 2014
Daniela Barcel¨®
?

Similar to Designofhtml5 (20)

Le design du HTML5 (Remix)
Le design du HTML5 (Remix)Le design du HTML5 (Remix)
Le design du HTML5 (Remix)
Manuel Schmalstieg
?
Migration from FAST ESP to Solr
Migration from FAST ESP to SolrMigration from FAST ESP to Solr
Migration from FAST ESP to Solr
TNR Global
?
Known XML Vulnerabilities Are Still a Threat to Popular Parsers ! & Open Sour...
Known XML Vulnerabilities Are Still a Threat to Popular Parsers ! & Open Sour...Known XML Vulnerabilities Are Still a Threat to Popular Parsers ! & Open Sour...
Known XML Vulnerabilities Are Still a Threat to Popular Parsers ! & Open Sour...
Lionel Briand
?
Busy Architects Guide to Modern Web Architecture in 2014
Busy Architects Guide to  Modern Web Architecture in 2014Busy Architects Guide to  Modern Web Architecture in 2014
Busy Architects Guide to Modern Web Architecture in 2014
Particular Software
?
Open for Business - Open Archives, OpenURL, RSS and the Dublin Core
Open for Business - Open Archives, OpenURL, RSS and the Dublin CoreOpen for Business - Open Archives, OpenURL, RSS and the Dublin Core
Open for Business - Open Archives, OpenURL, RSS and the Dublin Core
Andy Powell
?
The Semantic Web
The Semantic WebThe Semantic Web
The Semantic Web
Barry Smith
?
Wisdom Of Crowds
Wisdom Of CrowdsWisdom Of Crowds
Wisdom Of Crowds
guest5dedec
?
Implementing the Genetic Algorithm in XSLT: PoC
Implementing the Genetic Algorithm in XSLT: PoCImplementing the Genetic Algorithm in XSLT: PoC
Implementing the Genetic Algorithm in XSLT: PoC
jimfuller2009
?
Bodleian Library's DAMS system
Bodleian Library's DAMS systemBodleian Library's DAMS system
Bodleian Library's DAMS system
benosteen
?
IPTC News in JSON Spring 2013
IPTC News in JSON Spring 2013IPTC News in JSON Spring 2013
IPTC News in JSON Spring 2013
Stuart Myles
?
Semantic web and Linked Data
Semantic web and Linked DataSemantic web and Linked Data
Semantic web and Linked Data
Hyun Namgoong
?
An Introduction to Working With the Activity Stream
An Introduction to Working With the Activity StreamAn Introduction to Working With the Activity Stream
An Introduction to Working With the Activity Stream
Mikkel Flindt Heisterberg
?
Mikkel Heisterberg - An introduction to developing for the Activity Stream
Mikkel Heisterberg - An introduction to developing for the Activity StreamMikkel Heisterberg - An introduction to developing for the Activity Stream
Mikkel Heisterberg - An introduction to developing for the Activity Stream
LetsConnect
?
Introduction to MySQL Document Store
Introduction to MySQL Document StoreIntroduction to MySQL Document Store
Introduction to MySQL Document Store
Frederic Descamps
?
[In Control 2010] HTML5
[In Control 2010] HTML5[In Control 2010] HTML5
[In Control 2010] HTML5
Christopher Schmitt
?
Institutional knowledge and information ecology in a Free Software ecosystem
Institutional knowledge and information ecology in a Free Software ecosystemInstitutional knowledge and information ecology in a Free Software ecosystem
Institutional knowledge and information ecology in a Free Software ecosystem
Derek Keats
?
Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...
Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...
Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...
Codemotion
?
Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...
Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...
Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...
Codemotion
?
Cs 891 2rev B
Cs 891 2rev BCs 891 2rev B
Cs 891 2rev B
Carlton Northern
?
D¨¦graissons le mammouth ou Darwin a encore frapp¨¦ - La th¨¦orie de l'¨¦volution...
D¨¦graissons le mammouth ou Darwin a encore frapp¨¦ - La th¨¦orie de l'¨¦volution...D¨¦graissons le mammouth ou Darwin a encore frapp¨¦ - La th¨¦orie de l'¨¦volution...
D¨¦graissons le mammouth ou Darwin a encore frapp¨¦ - La th¨¦orie de l'¨¦volution...
Arnauld Loyer
?
Migration from FAST ESP to Solr
Migration from FAST ESP to SolrMigration from FAST ESP to Solr
Migration from FAST ESP to Solr
TNR Global
?
Known XML Vulnerabilities Are Still a Threat to Popular Parsers ! & Open Sour...
Known XML Vulnerabilities Are Still a Threat to Popular Parsers ! & Open Sour...Known XML Vulnerabilities Are Still a Threat to Popular Parsers ! & Open Sour...
Known XML Vulnerabilities Are Still a Threat to Popular Parsers ! & Open Sour...
Lionel Briand
?
Busy Architects Guide to Modern Web Architecture in 2014
Busy Architects Guide to  Modern Web Architecture in 2014Busy Architects Guide to  Modern Web Architecture in 2014
Busy Architects Guide to Modern Web Architecture in 2014
Particular Software
?
Open for Business - Open Archives, OpenURL, RSS and the Dublin Core
Open for Business - Open Archives, OpenURL, RSS and the Dublin CoreOpen for Business - Open Archives, OpenURL, RSS and the Dublin Core
Open for Business - Open Archives, OpenURL, RSS and the Dublin Core
Andy Powell
?
Implementing the Genetic Algorithm in XSLT: PoC
Implementing the Genetic Algorithm in XSLT: PoCImplementing the Genetic Algorithm in XSLT: PoC
Implementing the Genetic Algorithm in XSLT: PoC
jimfuller2009
?
Bodleian Library's DAMS system
Bodleian Library's DAMS systemBodleian Library's DAMS system
Bodleian Library's DAMS system
benosteen
?
IPTC News in JSON Spring 2013
IPTC News in JSON Spring 2013IPTC News in JSON Spring 2013
IPTC News in JSON Spring 2013
Stuart Myles
?
Semantic web and Linked Data
Semantic web and Linked DataSemantic web and Linked Data
Semantic web and Linked Data
Hyun Namgoong
?
An Introduction to Working With the Activity Stream
An Introduction to Working With the Activity StreamAn Introduction to Working With the Activity Stream
An Introduction to Working With the Activity Stream
Mikkel Flindt Heisterberg
?
Mikkel Heisterberg - An introduction to developing for the Activity Stream
Mikkel Heisterberg - An introduction to developing for the Activity StreamMikkel Heisterberg - An introduction to developing for the Activity Stream
Mikkel Heisterberg - An introduction to developing for the Activity Stream
LetsConnect
?
Introduction to MySQL Document Store
Introduction to MySQL Document StoreIntroduction to MySQL Document Store
Introduction to MySQL Document Store
Frederic Descamps
?
Institutional knowledge and information ecology in a Free Software ecosystem
Institutional knowledge and information ecology in a Free Software ecosystemInstitutional knowledge and information ecology in a Free Software ecosystem
Institutional knowledge and information ecology in a Free Software ecosystem
Derek Keats
?
Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...
Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...
Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...
Codemotion
?
Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...
Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...
Cristiano Rastelli - Atomic Design, Design Systems and React. Cool, but... - ...
Codemotion
?
D¨¦graissons le mammouth ou Darwin a encore frapp¨¦ - La th¨¦orie de l'¨¦volution...
D¨¦graissons le mammouth ou Darwin a encore frapp¨¦ - La th¨¦orie de l'¨¦volution...D¨¦graissons le mammouth ou Darwin a encore frapp¨¦ - La th¨¦orie de l'¨¦volution...
D¨¦graissons le mammouth ou Darwin a encore frapp¨¦ - La th¨¦orie de l'¨¦volution...
Arnauld Loyer
?

More from isnull (17)

Õ¾µã±¨¸æÄ£°å
Õ¾µã±¨¸æÄ£°åÕ¾µã±¨¸æÄ£°å
Õ¾µã±¨¸æÄ£°å
isnull
?
My sqlÊý¾Ý¿â¿ª·¢µÄÈýÊ®ÁùÌõ¾ü¹æ
My sqlÊý¾Ý¿â¿ª·¢µÄÈýÊ®ÁùÌõ¾ü¹æMy sqlÊý¾Ý¿â¿ª·¢µÄÈýÊ®ÁùÌõ¾ü¹æ
My sqlÊý¾Ý¿â¿ª·¢µÄÈýÊ®ÁùÌõ¾ü¹æ
isnull
?
»ùÓڰ±ð²úµÄÏîÄ¿¹ÜÀí¹¤¾ß°ù±ð»å³¾¾±²Ô±ð
»ùÓڰ±ð²úµÄÏîÄ¿¹ÜÀí¹¤¾ß°ù±ð»å³¾¾±²Ô±ð»ùÓڰ±ð²úµÄÏîÄ¿¹ÜÀí¹¤¾ß°ù±ð»å³¾¾±²Ô±ð
»ùÓڰ±ð²úµÄÏîÄ¿¹ÜÀí¹¤¾ß°ù±ð»å³¾¾±²Ô±ð
isnull
?
ÕÅÓ ËÑËÑÇ°¶Ë¼Ü¹¹
ÕÅÓ ËÑËÑÇ°¶Ë¼Ü¹¹ÕÅÓ ËÑËÑÇ°¶Ë¼Ü¹¹
ÕÅÓ ËÑËÑÇ°¶Ë¼Ü¹¹
isnull
?
²Ñ²â²õ±ç±ô¿ª·¢ÓëÓÅ»¯
²Ñ²â²õ±ç±ô¿ª·¢ÓëÓÅ»¯²Ñ²â²õ±ç±ô¿ª·¢ÓëÓÅ»¯
²Ñ²â²õ±ç±ô¿ª·¢ÓëÓÅ»¯
isnull
?
Èí¼þ¹¤³Ì&²¹³¾±è;¼Ü¹¹
Èí¼þ¹¤³Ì&²¹³¾±è;¼Ü¹¹Èí¼þ¹¤³Ì&²¹³¾±è;¼Ü¹¹
Èí¼þ¹¤³Ì&²¹³¾±è;¼Ü¹¹
isnull
?
ÌÔ±¦·Ö²¼Ê½Êý¾Ý´¦Àíʵ¼ù
ÌÔ±¦·Ö²¼Ê½Êý¾Ý´¦Àíʵ¼ùÌÔ±¦·Ö²¼Ê½Êý¾Ý´¦Àíʵ¼ù
ÌÔ±¦·Ö²¼Ê½Êý¾Ý´¦Àíʵ¼ù
isnull
?
183ÒøÐзþÎñÆ÷ÏÂÔØ˵Ã÷
183ÒøÐзþÎñÆ÷ÏÂÔØ˵Ã÷183ÒøÐзþÎñÆ÷ÏÂÔØ˵Ã÷
183ÒøÐзþÎñÆ÷ÏÂÔØ˵Ã÷
isnull
?
ÈËÈËÍø¼¼Êõ¾­ÀíÕÅÌú°² Feedϵͳ½á¹¹Ç³Îö
ÈËÈËÍø¼¼Êõ¾­ÀíÕÅÌú°² Feedϵͳ½á¹¹Ç³ÎöÈËÈËÍø¼¼Êõ¾­ÀíÕÅÌú°² Feedϵͳ½á¹¹Ç³Îö
ÈËÈËÍø¼¼Êõ¾­ÀíÕÅÌú°² Feedϵͳ½á¹¹Ç³Îö
isnull
?
Dutch php conference_apc_mem2010
Dutch php conference_apc_mem2010Dutch php conference_apc_mem2010
Dutch php conference_apc_mem2010
isnull
?
Dutch php conference_2010_opm
Dutch php conference_2010_opmDutch php conference_2010_opm
Dutch php conference_2010_opm
isnull
?
Yui3 ³õ̽
Yui3 ³õ̽Yui3 ³õ̽
Yui3 ³õ̽
isnull
?
´óÐÍÓ¦ÓÃÈí¼þ¼Ü¹¹µÄ±äǨ
´óÐÍÓ¦ÓÃÈí¼þ¼Ü¹¹µÄ±äǨ´óÐÍÓ¦ÓÃÈí¼þ¼Ü¹¹µÄ±äǨ
´óÐÍÓ¦ÓÃÈí¼þ¼Ü¹¹µÄ±äǨ
isnull
?
Ò×Ȥ
Ò×ȤÒ×Ȥ
Ò×Ȥ
isnull
?
Õ¾µã±¨¸æÄ£°å
Õ¾µã±¨¸æÄ£°åÕ¾µã±¨¸æÄ£°å
Õ¾µã±¨¸æÄ£°å
isnull
?
My sqlÊý¾Ý¿â¿ª·¢µÄÈýÊ®ÁùÌõ¾ü¹æ
My sqlÊý¾Ý¿â¿ª·¢µÄÈýÊ®ÁùÌõ¾ü¹æMy sqlÊý¾Ý¿â¿ª·¢µÄÈýÊ®ÁùÌõ¾ü¹æ
My sqlÊý¾Ý¿â¿ª·¢µÄÈýÊ®ÁùÌõ¾ü¹æ
isnull
?
»ùÓڰ±ð²úµÄÏîÄ¿¹ÜÀí¹¤¾ß°ù±ð»å³¾¾±²Ô±ð
»ùÓڰ±ð²úµÄÏîÄ¿¹ÜÀí¹¤¾ß°ù±ð»å³¾¾±²Ô±ð»ùÓڰ±ð²úµÄÏîÄ¿¹ÜÀí¹¤¾ß°ù±ð»å³¾¾±²Ô±ð
»ùÓڰ±ð²úµÄÏîÄ¿¹ÜÀí¹¤¾ß°ù±ð»å³¾¾±²Ô±ð
isnull
?
ÕÅÓ ËÑËÑÇ°¶Ë¼Ü¹¹
ÕÅÓ ËÑËÑÇ°¶Ë¼Ü¹¹ÕÅÓ ËÑËÑÇ°¶Ë¼Ü¹¹
ÕÅÓ ËÑËÑÇ°¶Ë¼Ü¹¹
isnull
?
²Ñ²â²õ±ç±ô¿ª·¢ÓëÓÅ»¯
²Ñ²â²õ±ç±ô¿ª·¢ÓëÓÅ»¯²Ñ²â²õ±ç±ô¿ª·¢ÓëÓÅ»¯
²Ñ²â²õ±ç±ô¿ª·¢ÓëÓÅ»¯
isnull
?
Èí¼þ¹¤³Ì&²¹³¾±è;¼Ü¹¹
Èí¼þ¹¤³Ì&²¹³¾±è;¼Ü¹¹Èí¼þ¹¤³Ì&²¹³¾±è;¼Ü¹¹
Èí¼þ¹¤³Ì&²¹³¾±è;¼Ü¹¹
isnull
?
ÌÔ±¦·Ö²¼Ê½Êý¾Ý´¦Àíʵ¼ù
ÌÔ±¦·Ö²¼Ê½Êý¾Ý´¦Àíʵ¼ùÌÔ±¦·Ö²¼Ê½Êý¾Ý´¦Àíʵ¼ù
ÌÔ±¦·Ö²¼Ê½Êý¾Ý´¦Àíʵ¼ù
isnull
?
183ÒøÐзþÎñÆ÷ÏÂÔØ˵Ã÷
183ÒøÐзþÎñÆ÷ÏÂÔØ˵Ã÷183ÒøÐзþÎñÆ÷ÏÂÔØ˵Ã÷
183ÒøÐзþÎñÆ÷ÏÂÔØ˵Ã÷
isnull
?
ÈËÈËÍø¼¼Êõ¾­ÀíÕÅÌú°² Feedϵͳ½á¹¹Ç³Îö
ÈËÈËÍø¼¼Êõ¾­ÀíÕÅÌú°² Feedϵͳ½á¹¹Ç³ÎöÈËÈËÍø¼¼Êõ¾­ÀíÕÅÌú°² Feedϵͳ½á¹¹Ç³Îö
ÈËÈËÍø¼¼Êõ¾­ÀíÕÅÌú°² Feedϵͳ½á¹¹Ç³Îö
isnull
?
Dutch php conference_apc_mem2010
Dutch php conference_apc_mem2010Dutch php conference_apc_mem2010
Dutch php conference_apc_mem2010
isnull
?
Dutch php conference_2010_opm
Dutch php conference_2010_opmDutch php conference_2010_opm
Dutch php conference_2010_opm
isnull
?
Yui3 ³õ̽
Yui3 ³õ̽Yui3 ³õ̽
Yui3 ³õ̽
isnull
?
´óÐÍÓ¦ÓÃÈí¼þ¼Ü¹¹µÄ±äǨ
´óÐÍÓ¦ÓÃÈí¼þ¼Ü¹¹µÄ±äǨ´óÐÍÓ¦ÓÃÈí¼þ¼Ü¹¹µÄ±äǨ
´óÐÍÓ¦ÓÃÈí¼þ¼Ü¹¹µÄ±äǨ
isnull
?

Designofhtml5