This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.This theme is Bloggerized by Lasantha Bandara - Premiumbloggertemplates.com.

Wednesday, April 29, 2015

Belajar HTML5

Belajar HTML5


Pengenalan HTML5

HTML5 merupakan sebuah bahasa markah
untuk menstrukturkan dan menampilkan isi dari
World Wide Web, sebuah teknologi inti dari
Internet. HTML5 adalah revisi kelima dari HTML
dan hingga bulan Juni 2011 masih dalam
pengembangan.

 
Tujuan dikembangkannya HTML5
adalah untuk memperbaiki teknologi HTML agar
mendukung teknologi multimedia terbaru,
mudah dibaca oleh manusia dan juga mudah
dimengerti oleh mesin.



DOCTYPE HTML5 

DOCTYPE adalah instruksi untuk web browsertentang apa versi bahasa markup halamanyang ditulis.



berikut contoh penulisan DOCTYPE HTML5

 
<!DOCTYPE html>
<html>
<head>
          <meta charset="UTF-8">
          <title>judul pada dokumen</title>
</head>
<body>
isi pada dokumen . . .
</body>
</html>


lihat hasil nya ya...???


Contoh penulisan DOCTYPE selanjutnya


<!DOCTYPE html>
<html>
<head>
          <meta charset="UTF-8">
          <title>Fitur HTML5</title>
</head>
<body>
<header>
          <h2>Tutorial HTML5</h2>
</header>
<article>
          TML-5-Tutorial.com is geared to those who want to edit and write HTML code by hand. Knowing how the nuts and bolts of a webpage fit and work together gives you the means to utilize HTML5's full potential. Debugging and tweaking the code is easier and it greatly facilitates search engine optimization (SEO).
</article>
<footer>
           <p><h4>copyright &copy; 2015 haris</h4></p>
</footer>
</body>
</html>


Contoh tag video


<!DOCTYPE html>
<html>
<head>
          <meta charset="UTF-8">
          <title>Video</title>
</head>
<body>
<video controls="controls" width="100" height="150">
          <source src="video yg ingin anda tampilka/lihat" type="video/webm"/>
</video>
</body>
</html>


lihat hasil nya ya...???

"Selamat mengerjakan"