<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>html &#8211; Kodono</title>
	<atom:link href="https://blog.kodono.info/wordpress/tag/html/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.kodono.info/wordpress</link>
	<description>Pour tous les technophiles</description>
	<lastBuildDate>Wed, 26 Nov 2014 10:14:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.1</generator>
	<item>
		<title>Breadcrumb / steps in CSS that works from IE8 [CSS]</title>
		<link>https://blog.kodono.info/wordpress/2014/11/26/breadcrumb-steps-in-css-that-works-from-ie8-css/</link>
					<comments>https://blog.kodono.info/wordpress/2014/11/26/breadcrumb-steps-in-css-that-works-from-ie8-css/#respond</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Wed, 26 Nov 2014 10:14:06 +0000</pubDate>
				<category><![CDATA[Niveau débutant]]></category>
		<category><![CDATA[Programmation]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Web Design]]></category>
		<guid isPermaLink="false">http://blog.kodono.info/wordpress/?p=1432</guid>

					<description><![CDATA[I was looking for a simple code for a step by step process indicator. I found a few things, but everyone seems to have forgotten about IE8&#8230; I need to support this old browser at work. So I did my own that I&#8217;m sharing here: File Uploaded &#8594; File Reviewed &#8594; File Approved And the [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>I was looking for a simple code for a step by step process indicator. I found a few things, but everyone seems to have forgotten about IE8&#8230; I need to support this old browser at work. So I did my own that I&#8217;m sharing here:</p>
<ul class="steps">
<li class="step complete">File Uploaded</li>
<li class="arrow">&rarr;</li>
<li class="step current">File Reviewed</li>
<li class="arrow">&rarr;</li>
<li class="step">File Approved</li>
</ul>
<style>
body {
  counter-reset:steps
}
ul.steps {
  margin:0;
  padding:0;
}
ul.steps li.step {
  background: none repeat scroll 0 0 lightgray;
  border-radius: 1em;
  color: white;
  display: inline-block;
  font-size: 14px;
  height: 4em;
  line-height: 4em;
  margin: 0 1em;
  position: relative;
  text-align: center;
  width: 9em;
}
ul.steps li.step:before {
  content: counter(steps, decimal) ". ";
  counter-increment: steps;
}
ul.steps li.step.complete:before {
  content: "&#x2714; ";
}
ul.steps li.step.complete {
  background-color: green;
}
ul.steps li.step.current {
  background-color:dodgerblue
}
ul.steps li.arrow {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  color: black;
  display: inline-block;
  font-size: 28px;
  height: 46px;
  line-height: normal;
  margin: 0;
  width: auto;
}
</style>
<p>And the code:</p>
<pre class="brush:html">
&lt;ul class="steps">
  &lt;li class="step complete">File Uploaded&lt;/li>
  &lt;li class="arrow">&rarr;&lt;/li>
  &lt;li class="step current">File Reviewed&lt;/li>
  &lt;li class="arrow">&rarr;&lt;/li>
  &lt;li class="step">File Approved&lt;/li>
&lt;/ul>
</pre>
<pre class="brush:css">
&lt;style>
body {
  counter-reset:steps
}
ul.steps {
  margin:0;
  padding:0;
}
ul.steps li.step {
  background: none repeat scroll 0 0 lightgray;
  border-radius: 1em;
  color: white;
  display: inline-block;
  font-size: 14px;
  height: 4em;
  line-height: 4em;
  margin: 0 1em;
  position: relative;
  text-align: center;
  width: 9em;
}
ul.steps li.step:before {
  content: counter(steps, decimal) ". ";
  counter-increment: steps;
}
ul.steps li.step.complete:before {
  content: "<img src="https://s.w.org/images/core/emoji/15.0.3/72x72/2714.png" alt="✔" class="wp-smiley" style="height: 1em; max-height: 1em;" /> ";
}
ul.steps li.step.complete {
  background-color: green;
}
ul.steps li.step.current {
  background-color:dodgerblue
}
ul.steps li.arrow {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
  color: black;
  display: inline-block;
  font-size: 28px;
  height: 46px;
  line-height: normal;
  margin: 0;
  width: auto;
}
&lt;/style>
</pre>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2014/11/26/breadcrumb-steps-in-css-that-works-from-ie8-css/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Les caractères spéciaux à portée de main [à bookmarker]</title>
		<link>https://blog.kodono.info/wordpress/2009/04/21/les-caracteres-speciaux-a-portee-de-main-a-bookmarker/</link>
					<comments>https://blog.kodono.info/wordpress/2009/04/21/les-caracteres-speciaux-a-portee-de-main-a-bookmarker/#comments</comments>
		
		<dc:creator><![CDATA[Aymeric]]></dc:creator>
		<pubDate>Tue, 21 Apr 2009 14:53:41 +0000</pubDate>
				<category><![CDATA[À bookmarker]]></category>
		<category><![CDATA[Niveau débutant]]></category>
		<category><![CDATA[html]]></category>
		<guid isPermaLink="false">http://blog.kodono.info/wordpress/?p=70</guid>

					<description><![CDATA[[niveau: débutant] EDIT: d&#8217;autres symboles sont disponibles sur http://www.simbolostwitter.com/ CopyPasteCharacter est un site qui propose plus de 120 caractères spéciaux, allant de la simple lettre accentuée, aux symboles qu&#8217;on ne savait même pas qu&#8217;on pouvait les faire ! Il suffit de cliquer sur un caractère pour que le site se charge de le copier directement, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>[niveau: débutant]</p>
<p><img fetchpriority="high" decoding="async" src="http://blog.kodono.info/wordpress/wp-content/uploads/2009/04/20090421_copypastecharacter-300x174.jpg" alt="20090421_copypastecharacter" title="20090421_copypastecharacter" width="300" height="174" class="aligncenter size-medium wp-image-71" srcset="https://blog.kodono.info/wordpress/wp-content/uploads/2009/04/20090421_copypastecharacter-300x174.jpg 300w, https://blog.kodono.info/wordpress/wp-content/uploads/2009/04/20090421_copypastecharacter-1024x595.jpg 1024w, https://blog.kodono.info/wordpress/wp-content/uploads/2009/04/20090421_copypastecharacter.jpg 1167w" sizes="(max-width: 300px) 100vw, 300px" /></p>
<p>EDIT: d&#8217;autres symboles sont disponibles sur <a href="http://www.simbolostwitter.com/p/english.html">http://www.simbolostwitter.com/</a></p>
<p><a href="http://www.copypastecharacter.com/">CopyPasteCharacter</a> est un site qui propose plus de 120 caractères spéciaux, allant de la simple lettre accentuée, aux symboles qu&#8217;on ne savait même pas qu&#8217;on pouvait les faire !<br />
Il suffit de cliquer sur un caractère pour que le site se charge de le copier directement, vous n&#8217;avez donc plus qu&#8217;à le coller où vous voulez, comme ce bonhomme de neige <span style="font-size:2.5em"><img src="https://s.w.org/images/core/emoji/15.0.3/72x72/2603.png" alt="☃" class="wp-smiley" style="height: 1em; max-height: 1em;" /></span> ou cette note de musique <span style="font-size:2.5em">&#x266B;</span> !</p>
<p>Il propose le caractère en texte normal ou en code HTML.</p>
<p><strong>Edit</strong>: à noter que sous Windows il est possible de trouver une table très complète des caractères spéciaux en allant dans :<br />
<code>menu Démarrer &gt; Programmes &gt; Accessoires &gt; Outils Système &gt; Table des caractères</code></p>
]]></content:encoded>
					
					<wfw:commentRss>https://blog.kodono.info/wordpress/2009/04/21/les-caracteres-speciaux-a-portee-de-main-a-bookmarker/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
	</channel>
</rss>
