Genel

Ana sayfa Genel

Görüntülenecek hiçbir paylaşım yok

Güncel Konular

Html ile saat kodu

0
Html ile saat kodu <!DOCTYPE html> <html> <head>  <title>Saat kodu</title>  <script type="text/javascript">   function saatGoster() {    var tarih = new Date();    var saat = tarih.getHours();    var dakika = tarih.getMinutes();    var...