<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>Aubrière asso &#187; Tous les messages</title>
		<atom:link href="https://www.aubriereinfo.com/forums/feed/" rel="self" type="application/rss+xml" />
		<link>https://www.aubriereinfo.com/forums/feed/</link>
		<description></description>
		<pubDate>Thu, 16 Apr 2026 22:47:57 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.5.4-5380</generator>
		<language>fr-FR</language>

		
		
					
				<item>
					<guid>https://www.aubriereinfo.com/forums/topic/temporibus-autem-quibusdam-et-aut-officiis-debitis-aut-rerum/#post-231</guid>
					<title><![CDATA[R&eacute;pondre &agrave;: Temporibus autem quibusdam et]]></title>
					<link>https://www.aubriereinfo.com/forums/topic/temporibus-autem-quibusdam-et-aut-officiis-debitis-aut-rerum/#post-231</link>
					<pubDate>Thu, 08 May 2014 16:36:04 +0000</pubDate>
					<dc:creator>aubriere</dc:creator>

					<description>
						<![CDATA[
						<p>Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. </p>
<p>Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://www.aubriereinfo.com/forums/topic/javascript-where-to/#post-228</guid>
					<title><![CDATA[JavaScript Where To]]></title>
					<link>https://www.aubriereinfo.com/forums/topic/javascript-where-to/#post-228</link>
					<pubDate>Thu, 08 May 2014 16:33:47 +0000</pubDate>
					<dc:creator>aubriere</dc:creator>

					<description>
						<![CDATA[
						<p>In HTML, JavaScripts must be inserted between &lt;script&gt; and &lt;/script&gt; tags.</p>
<p>JavaScripts can be put in the &lt;body&gt; and in the &lt;head&gt; section of an HTML page.</p>
<p>The &lt;script&gt; Tag<br />
To insert a JavaScript into an HTML page, use the &lt;script&gt; tag.</p>
<p>The &lt;script&gt; and &lt;/script&gt; tells where the JavaScript starts and ends.</p>
<p>The lines between &lt;script&gt; and &lt;/script&gt; contain the JavaScript code:</p>
<p>Example</p>
<pre>&lt;script&gt;
function myFunction() {
 document.getElementById("demo").innerHTML = "My First JavaScript Function";
}
&lt;/script&gt;
You don't have to understand the code above.</pre>
<p>Just take it for a fact, that the browser will interpret the code between the &lt;script&gt; and &lt;/script&gt; tags as JavaScript.</p>
<p>Note Old examples may have type=&nbsp;&raquo;text/javascript&nbsp;&raquo; in the &lt;script&gt; tag. This is no longer required.<br />
JavaScript is the default scripting language in all modern browsers and in HTML5.</p>
<p>JavaScript Functions and Events<br />
Often, JavaScript code is written to be executed when an event occurs, like when the user clicks a button.</p>
<p>JavaScript code inside a function, can be invoked later, when an event occurs.</p>
<p>Invoke a function = Call upon a function (ask for the code in the function to be executed).</p>
<p>You will learn much more about functions and events in later chapters.</p>
<p>JavaScript in &lt;head&gt; or &lt;body&gt;<br />
You can place any number of scripts in an HTML document.</p>
<p>Scripts can be placed in the &lt;body&gt; or in the &lt;head&gt; section of HTML, and/or in both.</p>
<p>Often you will see scripts at the bottom of the &lt;body&gt; section of a web page. This can reduce display time.</p>
<p>Sometimes you will see all JavaScript functions in the &lt;head&gt; section.</p>
<p>Anyway, separating HTML and JavaScript, by putting all the code in one place, is always a good habit.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://www.aubriereinfo.com/forums/topic/new-elements-in-html5/#post-227</guid>
					<title><![CDATA[R&eacute;pondre &agrave;: New Elements in HTML5]]></title>
					<link>https://www.aubriereinfo.com/forums/topic/new-elements-in-html5/#post-227</link>
					<pubDate>Thu, 08 May 2014 16:30:55 +0000</pubDate>
					<dc:creator>aubriere</dc:creator>

					<description>
						<![CDATA[
						<p>Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae.</p>
<p>Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat.&nbsp;&raquo;</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://www.aubriereinfo.com/forums/topic/new-elements-in-html5/#post-223</guid>
					<title><![CDATA[New Elements in HTML5]]></title>
					<link>https://www.aubriereinfo.com/forums/topic/new-elements-in-html5/#post-223</link>
					<pubDate>Thu, 08 May 2014 16:28:25 +0000</pubDate>
					<dc:creator>aubriere</dc:creator>

					<description>
						<![CDATA[
						<p>The internet, and the use of the internet, has changed a lot since 1999, when HTML 4.01 became a standard.</p>
<p>Today, several elements in HTML 4.01 are obsolete, never used, or not used the way they were intended. All those elements are removed or re-written in HTML5.</p>
<p>To better handle today&rsquo;s internet needs, HTML5 has also included new elements for drawing graphics, displaying media content, for better page structure and better form handling, and several new APIs, such as drag and drop, get the geographical position of a user, store local data, and more.</p>
<p>Below is a list of the new HTML elements, introduced by HTML5, and a description of what they are used for.</p>
<p>The New &lt;canvas&gt; Element<br />
Note: The links in the tables below point to our HTML5 Reference. However, you will learn more about these new elements in this tutorial.</p>
<p>Tag Description<br />
&lt;canvas&gt; Defines graphic drawing using JavaScript</p>
<p>New Media Elements<br />
Tag Description</p>
<ul>
<li>&lt;audio&gt; Defines sound or music content</li>
<li>&lt;embed&gt; Defines containers for external applications (like plug-ins)</li>
<li>&lt;source&gt; Defines sources for &lt;video&gt; and &lt;audio&gt;</li>
<li>&lt;track&gt; Defines tracks for &lt;video&gt; and &lt;audio&gt;</li>
<li>&lt;video&gt; Defines video or movie content</li>
</ul>
<p>New Form Elements<br />
Tag Description</p>
<ul>
<li>&lt;datalist&gt; Defines pre-defined options for input controls</li>
<li>&lt;keygen&gt; Defines a key-pair generator field (for forms)</li>
<li>&lt;output&gt; Defines the result of a calculation</li>
</ul>
<p>New Semantic/Structural Elements<br />
HTML5 offers new elements for better structure:</p>
<p>Tag Description</p>
<ul>
<li>&lt;article&gt; Defines an article in the document</li>
<li>&lt;aside&gt; Defines content aside from the page content</li>
<li>&lt;bdi&gt; Defines a part of text that might be formatted in a different direction from other text outside it</li>
<li>&lt;details&gt; Defines additional details that the user can view or hide</li>
<li>&lt;dialog&gt; Defines a dialog box or window</li>
<li>&lt;figcaption&gt; Defines a caption for a &lt;figure&gt; element</li>
<li>&lt;figure&gt; Defines self-contained content, like illustrations, diagrams, photos, code listings, etc.</li>
<li>&lt;footer&gt; Defines a footer for the document or a section</li>
<li>&lt;header&gt; Defines a header for the document or a section</li>
<li>&lt;main&gt; Defines the main content of a document</li>
<li>&lt;mark&gt; Defines marked or highlighted text</li>
<li>&lt;menuitem&gt; Defines a command/menu item that the user can invoke from a popup menu</li>
<li>&lt;meter&gt; Defines a scalar measurement within a known range (a gauge)</li>
<li>&lt;nav&gt; Defines navigation links in the document</li>
<li>&lt;progress&gt; Defines the progress of a task</li>
<li>&lt;rp&gt; Defines what to show in browsers that do not support ruby annotations</li>
<li>&lt;rt&gt; Defines an explanation/pronunciation of characters (for East Asian typography)</li>
<li>&lt;ruby&gt; Defines a ruby annotation (for East Asian typography)</li>
<li>&lt;section&gt; Defines a section in the document</li>
<li>&lt;summary&gt; Defines a visible heading for a &lt;details&gt; element</li>
<li>&lt;time&gt; Defines a date/time</li>
<li>&lt;wbr&gt; Defines a possible line-break</li>
</ul>
<p>Removed Elements<br />
The following HTML 4.01 elements has been removed from HTML5:</p>
<ul>
<li>&lt;acronym&gt;</li>
<li>&lt;applet&gt;</li>
<li>&lt;basefont&gt;</li>
<li>&lt;big&gt;</li>
<li>&lt;center&gt;</li>
<li>&lt;dir&gt;</li>
<li>&lt;font&gt;</li>
<li>&lt;frame&gt;</li>
<li>&lt;frameset&gt;</li>
<li>&lt;noframes&gt;</li>
<li>&lt;strike&gt;</li>
<li>&lt;tt&gt;</li>
</ul>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://www.aubriereinfo.com/forums/topic/what-is-html5/#post-221</guid>
					<title><![CDATA[What is HTML5?]]></title>
					<link>https://www.aubriereinfo.com/forums/topic/what-is-html5/#post-221</link>
					<pubDate>Thu, 08 May 2014 16:25:05 +0000</pubDate>
					<dc:creator>aubriere</dc:creator>

					<description>
						<![CDATA[
						<p>HTML5 is the latest standard for HTML.</p>
<p>The previous version of HTML, HTML 4.01, came in 1999, and the internet has changed significantly since then.</p>
<p>HTML5 was designed to replace both HTML 4, XHTML, and the HTML DOM Level 2.</p>
<p>It was specially designed to deliver rich content without the need for additional plugins. The current version delivers everything from animation to graphics, music to movies, and can also be used to build complicated web applications.</p>
<p>HTML5 is also cross-platform. It is designed to work whether you are using a PC, or a Tablet, a Smartphone, or a Smart TV.</p>
<p>How Did HTML5 Get Started?<br />
HTML5 is a cooperation between the World Wide Web Consortium (W3C) and the Web Hypertext Application Technology Working Group (WHATWG).</p>
<p>WHATWG was working with web forms and applications, and W3C was working with XHTML 2.0. In 2006, they decided to cooperate and create a new version of HTML.</p>
<p>Some rules for HTML5 were established:</p>
<p>New features should be based on HTML, CSS, DOM, and JavaScript<br />
The need for external plugins (like Flash) should be reduced<br />
Error handling should be easier than in previous versions<br />
Scripting has to be replaced by more markup<br />
HTML5 should be device-independent<br />
The development process should be visible to the public<br />
The HTML5 &lt;!DOCTYPE&gt;<br />
In HTML5 there is only one DOCTYPE declaration, and it is very simple:</p>
<p>&lt;!DOCTYPE html&gt;</p>
<p>A Minimum HTML5 Document<br />
Below is a simple HTML5 document, with the minimum of required tags:</p>
<p>[php]<br />
&lt;!DOCTYPE html&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta charset=&quot;UTF-8&quot;&gt;<br />
&lt;title&gt;Title of the document&lt;/title&gt;<br />
&lt;/head&gt;</p>
<p>&lt;body&gt;<br />
Content of the document&#8230;&#8230;<br />
&lt;/body&gt;<br />
&lt;/html&gt;<br />
[/php]</p>
<p>&nbsp;</p>
<p>HTML5 &#8211; New Features<br />
Some of the most interesting new features in HTML5 are:</p>
<p>The &lt;canvas&gt; element for 2D drawing<br />
The &lt;video&gt; and &lt;audio&gt; elements for media playback<br />
Support for local storage<br />
New content-specific elements, like &lt;article&gt;, &lt;footer&gt;, &lt;header&gt;, &lt;nav&gt;, &lt;section&gt;<br />
New form controls, like calendar, date, time, email, url, search<br />
Browser Support for HTML5<br />
All major browsers (Chrome, Firefox, Internet Explorer, Safari, Opera) support the new HTML5 elements and APIs, and continue to add new HTML5 features to their latest versions.</p>
<p>The HTML 5 working group includes AOL, Apple, Google, IBM, Microsoft, Mozilla, Nokia, Opera, and hundreds of other vendors.</p>
<p>HTML5 References<br />
At W3Schools you will find complete references with all HTML4/HTML5 tags, global attributes, standard events, and more.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://www.aubriereinfo.com/forums/topic/css-how-to/#post-219</guid>
					<title><![CDATA[CSS How To&#8230;]]></title>
					<link>https://www.aubriereinfo.com/forums/topic/css-how-to/#post-219</link>
					<pubDate>Thu, 08 May 2014 16:20:30 +0000</pubDate>
					<dc:creator>aubriere</dc:creator>

					<description>
						<![CDATA[
						<p>When a browser reads a style sheet, it will format the document according to it.</p>
<p>Three Ways to Insert CSS<br />
There are three ways of inserting a style sheet:</p>
<p>External style sheet<br />
Internal style sheet<br />
Inline style<br />
External Style Sheet<br />
An external style sheet is ideal when the style is applied to many pages. With an external style sheet, you can change the look of an entire Web site by changing one file. Each page must link to the style sheet using the tag. The tag goes inside the head section:</p>
<p>An external style sheet can be written in any text editor. The file should not contain any html tags. Your style sheet should be saved with a .css extension. An example of a style sheet file is shown below:<br />
[css]<br />
hr {color:sienna;}<br />
p {margin-left:20px;}<br />
body {background-image:url(&quot;images/background.gif&quot;);}<br />
[/css]<br />
Note Do not add a space between the property value and the unit (such as margin-left:20 px). The correct way is: margin-left:20px</p>
<p>Internal Style Sheet<br />
An internal style sheet should be used when a single document has a unique style. You define internal styles in the head section of an HTML page, by using the</p>
<p>&nbsp;</p>
<p>Inline Styles<br />
An inline style loses many of the advantages of style sheets by mixing content with presentation. Use this method sparingly!</p>
<p>To use inline styles you use the style attribute in the relevant tag. The style attribute can contain any CSS property. The example shows how to change the color and the left margin of a paragraph:</p>
<p style="color: sienna; margin-left: 20px;">This is a paragraph.</p>
<p>Multiple Style Sheets<br />
If some properties have been set for the same selector in different style sheets, the values will be inherited from the more specific style sheet.</p>
<p>For example, an external style sheet has these properties for the h3 selector:<br />
[css]<br />
h3{<br />
color:red;<br />
text-align:left;<br />
font-size:8pt;<br />
}<br />
[/css]<br />
And an internal style sheet has these properties for the h3 selector:<br />
[css]<br />
h3{<br />
text-align:right;<br />
font-size:20pt;<br />
}<br />
[/css]<br />
If the page with the internal style sheet also links to the external style sheet the properties for h3 will be:<br />
[css]<br />
color:red;<br />
text-align:right;<br />
font-size:20pt;<br />
[/css]<br />
The color is inherited from the external style sheet and the text-alignment and the font-size is replaced by the internal style sheet.</p>
<p>Multiple Styles Will Cascade into One<br />
Styles can be specified:</p>
<p>inside an HTML element<br />
inside the head section of an HTML page<br />
in an external CSS file<br />
Tip: Even multiple external style sheets can be referenced inside a single HTML document.</p>
<p>Cascading order</p>
<p>What style will be used when there is more than one style specified for an HTML element?</p>
<p>Generally speaking we can say that all the styles will &laquo;&nbsp;cascade&nbsp;&raquo; into a new &laquo;&nbsp;virtual&nbsp;&raquo; style sheet by the following rules, where number four has the highest priority:</p>
<p>Browser default<br />
External style sheet<br />
Internal style sheet (in the head section)<br />
Inline style (inside an HTML element)<br />
So, an inline style (inside an HTML element) has the highest priority, which means that it will override a style defined inside thetag, or in an external style sheet, or in a browser (a default value).</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://www.aubriereinfo.com/forums/topic/css-syntax/#post-218</guid>
					<title><![CDATA[R&eacute;pondre &agrave;: CSS syntax]]></title>
					<link>https://www.aubriereinfo.com/forums/topic/css-syntax/#post-218</link>
					<pubDate>Thu, 08 May 2014 16:15:14 +0000</pubDate>
					<dc:creator>aubriere</dc:creator>

					<description>
						<![CDATA[
						<p>Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://www.aubriereinfo.com/forums/topic/css-syntax/#post-217</guid>
					<title><![CDATA[R&eacute;pondre &agrave;: CSS syntax]]></title>
					<link>https://www.aubriereinfo.com/forums/topic/css-syntax/#post-217</link>
					<pubDate>Thu, 08 May 2014 16:14:36 +0000</pubDate>
					<dc:creator>aubriere</dc:creator>

					<description>
						<![CDATA[
						<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. </p>
<p>Et harum quidem rerum facilis est et expedita distinctio.</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://www.aubriereinfo.com/forums/topic/css-selectors/#post-214</guid>
					<title><![CDATA[CSS Selectors]]></title>
					<link>https://www.aubriereinfo.com/forums/topic/css-selectors/#post-214</link>
					<pubDate>Thu, 08 May 2014 16:09:24 +0000</pubDate>
					<dc:creator>aubriere</dc:creator>

					<description>
						<![CDATA[
						<p>CSS selectors allow you to select and manipulate HTML element(s).</p>
<p>CSS selectors are used to &laquo;&nbsp;find&nbsp;&raquo; (or select) HTML elements based on their id, classes, types, attributes, values of attributes and much more.</p>
<p>The element Selector<br />
The element selector selects elements based on the element name.</p>
<p>You can select all
<p> elements on a page like this: (all </p>
<p> elements will be center-aligned, with a red text color)</p>
<pre>
p{
text-align:center;
color:red;
}
</pre></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>https://www.aubriereinfo.com/forums/topic/css-syntax/#post-211</guid>
					<title><![CDATA[CSS syntax]]></title>
					<link>https://www.aubriereinfo.com/forums/topic/css-syntax/#post-211</link>
					<pubDate>Thu, 08 May 2014 16:06:54 +0000</pubDate>
					<dc:creator>aubriere</dc:creator>

					<description>
						<![CDATA[
						<p>CSS Syntax<br />
A CSS rule set consists of a selector and a declaration block:</p>
<p>CSS selector</p>
<p>The selector points to the HTML element you want to style.</p>
<p>The declaration block contains one or more declarations separated by semicolons.</p>
<p>Each declaration includes a property name and a value, separated by a colon.</p>
<p>CSS Example<br />
A CSS declaration always ends with a semicolon, and declaration groups are surrounded by curly brackets:</p>
<pre>p {color:red;text-align:center;}</pre>
<p>To make the CSS more readable, you can put one declaration on each line, like this:</p>
<p>Example</p>
<pre>
p{
color:red;
text-align:center;
}
</pre>
<p>Try it yourself »</p>
<p>CSS Comments<br />
Comments are used to explain your code, and may help you when you edit the source code at a later date. Comments are ignored by browsers.</p>
<p>A CSS comment starts with /* and ends with */. Comments can also span multiple lines:</p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

