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.

Jumat, 04 April 2014



JAWABAN PEMROGRAMAN WEB :
1.       HTML  Merupakan singkatan dari hyper text  markup language
2.    <form> dan </form>
3.   - Action untuk menentukan tujuan apabila  tombol formulir di jalankan
      - Method untuk menentukan penyampaian informasi setelah tombol di jalankan / mengirim sebuah informasi.
4.   post : informasi tersebut akan di kirimkan terpisah dari URL
       get    : informasi yang di tampilkan akan di peroleh pada halaman itu sendiri
5.   maxlength : menentukan jumlah text yang dapat di masukkan pada area tertentu
6.   value : memberikan nilai awal  untuk kotak masukkan sebelum di inputkan tet baru
7.            <html>
                <head>
                                <title>contoh combo box </title>
                </head>
                <body>
                                <form>
                                Jenis kelamin : <br>
                                <select name = “jenis kelamin” >
                                <option value = “laki-laki”> laki-laki
                                <option value = “perempuan” >perempuan </option>
                                </form>
                </body>
                </html>
8.  Css adalah program atau script yang mengendalikan tag HTML dalam sebuah website
9.  -Internal style sheet
     -Eksternal style sheet
     -Inline style sheet
              10. <html>
                            <style type = "text/css">
body {/*value default dari tag <body> adalah warna latar putih dengan css kita bisa merubahnya / background = lime ; / *warna latar belakang */ padding - lot = 60 px ;/* jarak lari * /}
h1{/*dengan ini kita mrubah nilai default tag <h1> sesuai dengan property yang kita tambahkan */
color : green ;/*warna*/
font-family : times; serif; /*font family*/
<body>
<h1>ini adalah judul</h1>
<p>ini adalah paragraf</p>
</body>
                     </html>