<?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>Bilgisayar &#187; html5</title>
	<atom:link href="https://www.bilgisayar.me/index.php/tag/html5/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.bilgisayar.me</link>
	<description></description>
	<lastBuildDate>Wed, 29 Aug 2018 20:31:06 +0000</lastBuildDate>
	<language>tr-TR</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.29</generator>
	<item>
		<title>HTML5 ile eklenti kullanmadan form doğrulama</title>
		<link>https://www.bilgisayar.me/index.php/2015/08/05/html5-ile-eklenti-kullanmadan-form-dogrulama/</link>
		<comments>https://www.bilgisayar.me/index.php/2015/08/05/html5-ile-eklenti-kullanmadan-form-dogrulama/#comments</comments>
		<pubDate>Wed, 05 Aug 2015 23:48:36 +0000</pubDate>
		<dc:creator><![CDATA[Hakan Atılgan]]></dc:creator>
				<category><![CDATA[HTML/CSS]]></category>
		<category><![CDATA[html5]]></category>

		<guid isPermaLink="false">http://www.bilgisayar.me/?p=1478</guid>
		<description><![CDATA[HTML5 yeni özellikleri ile, Jquery gibi eklentiler kullanmadan HTML formlarını doğgrulama örneği. &#160;<a href="http://www.bilgisayar.me/demo/html5_form_hata_dogrulama/index.php" target="_blank" class="ozet demo_color">DEMO</a>]]></description>
				<content:encoded><![CDATA[<p></p>
<div style="text-align:center; width:100%">
<a href="http://www.bilgisayar.me/demo/html5_form_hata_dogrulama/index.php" target="_blank" class="buttons btn_red left"><span class="left">Demo</span></a>
</div>
<p>&nbsp;<br />
&nbsp;<br />
<a href="http://www.bilgisayar.me/wp-content/uploads/2015/08/html5_dogrulama_in.jpg" data-rel="lightbox-image-0" data-rl_title="" data-rl_caption="" title=""><img src="http://www.bilgisayar.me/wp-content/uploads/2015/08/html5_dogrulama_in.jpg" alt="html5_dogrulama_in" width="700" height="340" class="alignnone size-full wp-image-1509" /></a><br />
&nbsp;<br />
HTML</p>
<pre class="prettyprint linenums" >
    &lt;form &gt;
        &lt;label for=&quot;isim&quot;&gt;İsim&lt;/label&gt;
        &lt;input type=&quot;text&quot; placeholder=&quot;İsim&quot; name=&quot;isim&quot; required autofocus oninvalid=&quot;setCustomValidity(&#039;İsim Gereklidir&#039;)&quot; &gt;&lt;br /&gt;
        &lt;label for=&quot;soyisim&quot; &gt;Soyisim&lt;/label&gt;
        &lt;input type=&quot;text&quot; placeholder=&quot;Soyisim&quot; name=&quot;soyisim&quot; required oninvalid=&quot;setCustomValidity(&#039;Soyisim Gereklidir&#039;)&quot;&gt;
        &lt;label for=&quot;eposta&quot;&gt;E-posta&lt;/label&gt;
        &lt;input type=&quot;email&quot; placeholder=&quot;E-posta&quot; name=&quot;eposta&quot; required oninvalid=&quot;setCustomValidity(&#039;E-posta Geçersiz&#039;)&quot;&gt;
        &lt;label for=&quot;sifre&quot;&gt;Şifre&lt;/label&gt;
        &lt;input type=&quot;password&quot; placeholder=&quot;Şifre&quot; name=&quot;sifre&quot; 
            pattern=&quot;(?=.*d)(?=.*[a-z])(?=.*[A-Z]).{5,}&quot; 
            required
            oninvalid=&quot;setCustomValidity(&#039;En az 5 karakter, 1 büyük ve 1 küçük harf, ve 1 sayı&#039;)&quot;&gt;
        &lt;label for=&quot;tel&quot;&gt;Tel&lt;/label&gt;
        &lt;input type=&quot;text&quot; placeholder=&quot;xxx xxx xxxx&quot; name=&quot;tel&quot; 
            pattern=&#039;\d{3} \d{3} \d{4}&#039; 
            required
            oninvalid=&quot;setCustomValidity(&#039;Tel nosunu xxx xxx xxxx formatında girin&#039;)&quot; &gt;
        &lt;label for=&quot;url&quot;&gt;URL&lt;/label&gt;
        &lt;input type=&quot;url&quot; placeholder=&quot;örn. http://www.bilgisayar.me&quot; name=&quot;url&quot; required&gt;
        &lt;label for=&quot;karakter&quot;&gt;Sadece Harf&lt;/label&gt;
        &lt;input type=&quot;text&quot; placeholder=&quot;Büyük ve küçük harf&quot; name=&quot;karakter&quot; 
            pattern=&quot;^[a-zA-Z]+$&quot; 
            required
            oninvalid=&quot;setCustomValidity(&#039;Sadece büyük ve küçük harf Girin&#039;)&quot; &gt;
        &lt;label for=&quot;numara&quot;&gt;Sadece Sayı&lt;/label&gt;
        &lt;input type=&quot;text&quot; placeholder=&quot;Sadece Sayı&quot; name=&quot;numara&quot; 
            pattern=&quot;^[0-9]+$&quot; 
            required
            oninvalid=&quot;setCustomValidity(&#039;Sadece Sayı Girin&#039;)&quot; &gt;
        &lt;label for=&quot;limit&quot;&gt;Limit&lt;/label&gt;
        &lt;input type=&quot;text&quot; placeholder=&quot;2 ile 5 karakter arası&quot; name=&quot;limit&quot; 
            pattern=&quot;^[a-z][0-9]{2,5}$&quot; 
            required
            oninvalid=&quot;setCustomValidity(&#039;2 ile 5 karakter arası olmalıdır&#039;)&quot; &gt;
          &lt;button type=&quot;submit&quot; &gt;Kaydet&lt;/button&gt;
      &lt;/form&gt;
</pre>
<p><strong>required-</strong> zorunlu alanlar<br />
<strong>pattern </strong>&#8211; Etiketlerin değerlerini kontrol<br />
<strong>maxlength </strong>&#8211; Maksimum sınırı ayarlama</p>
]]></content:encoded>
			<wfw:commentRss>https://www.bilgisayar.me/index.php/2015/08/05/html5-ile-eklenti-kullanmadan-form-dogrulama/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bi.M Etkinlik akışı/Yorum/Sohbet Uygulaması</title>
		<link>https://www.bilgisayar.me/index.php/2015/06/07/jquery-ve-phpmysqlhtml5-ile-sohbet-uygulamasi/</link>
		<comments>https://www.bilgisayar.me/index.php/2015/06/07/jquery-ve-phpmysqlhtml5-ile-sohbet-uygulamasi/#comments</comments>
		<pubDate>Mon, 08 Jun 2015 01:10:29 +0000</pubDate>
		<dc:creator><![CDATA[Hakan Atılgan]]></dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sohbet]]></category>

		<guid isPermaLink="false">http://www.bilgisayar.me/?p=440</guid>
		<description><![CDATA[Sohbet uygulaması, web sitenizde rahatlıkla kullanabileceğiniz, JQuery, PHP/MYSQL ile hazırlanmış Jquery' in AJAX özelliğini kullanan bir uygulamadır.  <a href="http://www.bilgisayar.me/dosyalar/sohbet.zip" class="ozet yukle_color">YÜKLE</a>&#160;<a href="http://www.bilgisayar.me/demo/sohbet/sohbet.php"  target="_blank"  class="ozet demo_color">DEMO</a>]]></description>
				<content:encoded><![CDATA[<p>JQuery ve PHP/MYSQL/HTML5 ile Sohbet Uygulaması<br />
</p>
<div style="text-align:center; width:100%">
<a href="http://www.bilgisayar.me/demo/sohbet/sohbet.php" target="_blank" class="buttons btn_red left"><span class="left">Demo</span></a>
<a href="http://www.bilgisayar.me/dosyalar/sohbet.zip" target="_self" class="buttons btn_blue left"><span class="left"><i class="fa fa-download"></i> YÜKLE</span></a>
</div>
<p>&nbsp;<br />
&nbsp;<br />
&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>https://www.bilgisayar.me/index.php/2015/06/07/jquery-ve-phpmysqlhtml5-ile-sohbet-uygulamasi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
