School Event Aneka Yess dan Nano Nano Di SMK Taruna Bhakti

No comments
Info untuk siswa - siswi smk taruna bhakti silahkan daftarkan diri kalian di event ini, Untuk masing-masing chalenge terdiri maksimal 3 grup ,sedangkan untuk mob chalange hanya 1 grup tiap sekolah silahkan buat satu flashmob sesuai kreasi kalian.
jadi tunggu apa lagi silahkan ikuti audisi agar tampil dalam event ini.

"Mau eksis dan dapat hadiah kapan lagi ? "

Contact Person :
Dance Chalenge dan Flashmob: Bu Siti Sundari (085711872153)
Acoustic Chalenge : Yoyok Maryono (Assisten Lab Network)



No comments :

Post a Comment

Multimedia Store banner

No comments

No comments :

Post a Comment

How To syntax Highlight in Blogger ?

No comments
Bagaimana Caranya membuat postingan code program supaya warna-warni sesuai dengan editor program contohnya untuk bahasa program PHP .
Berikut adalah Contoh Kode program dari PHP
  1. <?php
  2. echo "Halo Saya dari PHP code ";
  3. ?>
contoh code untuk javascript :
  1. <script type="text/javascript">
  2. function halo(){
  3. alert('saya dari javascript code');
  4. }
  5. </script>
    bagaimana Membuat tampilan code seperti diatas ? simpel ternyata , langkah-langkahnya adalah :
    1. kunjungi web berikut : http://highlight.hohli.com/
    2. masukkan kode program pada inputan source code
    3. pilih bahasa pemrograman yang digunakan
    4. klik button highlith
    5. copy code pada inputan hasil (source)
    6. paste kan di new->post yang ada di blogger
    7. selesai

No comments :

Post a Comment

No comments
Contoh Login Proses.php
  1. <?php
  2. $user=$_POST['user'];
  3. $pswd=$_POST['password'];
  4.  
  5. //di baca variabel user sama dengan variabel pos user
  6.  
  7. //echo "$user";
  8. //echo $password;
  9.  
  10. if(($user=="lukman")&&($pswd=="oke")){
  11.  
  12. echo "passwod dan username <b>cocok</b> bisa di lanjutkan";
  13. //header("location:admin.php");
  14. echo "<script>window.location.href='admin.php';</script>";
  15.  
  16. }
  17. else{
  18.  
  19. echo "password atau username <b>salah</b> silahkan ulangi lagi ";
  20. echo "<script>window.location.href='login.php?status=gagal';</script>";
  21. }
  22. ?>

No comments :

Post a Comment

Layout web dengan CSS

No comments
 <html>  
 <style type="text/css">  
 .pembungkus {  
   width:900px;  
   padding:10px;  
   border:1px solid #999;  
   margin:10px auto;  
 }  
 .header {  
      background-color:#F99;  
      height:140px;  
      width:auto;  
      background:url(banner.png);  
 }  
 .menu {  
   height:35px;  
   background-color:#F36;  
 }  
 .navigasi {  
   float:left;  
   width:200px;  
   background-color:#999;  
   min-height:300px;  
 }  
 .kontent {  
   margin-left:200px;  
   background-color:#EEE;  
   min-height:300px;  
 }  
 .footer {  
   clear:both;  
   height:100px;  
   background-color:#CCC;  
 }  
 a:link {  
      color: #FF0;  
      text-decoration: none;  
      background-color:#C00;  
      display:block;  
      }  
 a:visited {  
      text-decoration: none;  
      color: #000;  
 }  
 a:hover {  
      text-decoration: underline;  
      color: #33F;  
      background-color:#0FC;  
      display:block;  
 }  
 a:active {  
      text-decoration: none;  
 }  
 </style>  
 <body>  
 <div class="pembungkus" name="pembungkus">  
  <div class="header" name="header"> ini Header</div>  
  <div class="menu">  
     <table width="75%">  
     <tr>  
     <td><a href="home.html">Home</a></td>  
      <td><a href="about.html">About</a></td>  
      <td><a href="artikel.html">Artikel</a></td>  
      <td><a href="faq.html">F.A.Q</a></td>  
     <td><a href="contact.html">Contact</a></td>  
     </tr>  
   </table>  
  </div>  
   <div class="navigasi">  
     Navigasi  
   </div>  
   <div class="kontent">  
     Konten      
   </div>  
 <div class="footer">  
     Footer  
   </div>  
 </div>  
 </body>  
 </html>  

No comments :

Post a Comment