WHAT'S NEW?
Loading...
Showing posts with label web. Show all posts
Showing posts with label web. Show all posts

Ok, Pada kesempatan ini ane mau posting materi Postest Praktikum ke-4 Pemrograman Web. Pada postingan ini ane mempelajari pembuatan Form dengan HTML.
Untuk tampilannya akan terlihat seperti gambar di bawah























Dan dibawah ini untuk scriptnya

<html>
<head>
<title>Praktikum 4</title>
</head>

<body>
<form action="" method="post" name="form">
<table>
<tr>
<td>Nama</td>
<td>:</td>
<td><input type="text" name="nama" placeholder="Enter Your Name" required></td>
</tr>
<tr>
<td>Alamat</td>
<td>:</td>
<td><input type="text" name="alamat" placeholder="Enter Your address" required size="50"></td>
</tr>
<tr>
<td>Telp</td>
<td>:</td>
<td><input type="text" name="telp" placeholder="Enter Your Telp" required size="12"></td>
</tr>
<tr>

<tr>
<td>Hobi</td>
<td>:</td>
<td>
<input type="checkbox" name="hobi" value="Menggambar">Menggambar</label>
<label><input type="checkbox" name="hobi" value="Menyanyi">Menyanyi</label>
</td>
</tr>
<tr>
<td>Jenis Kelamin</td>
<td>:</td>
<td><input type="radio" name="jk" value="Laki-laki">Laki-laki
<input type="radio" name="jk" value="Perempuan">Perempuan
</td>
</tr>
<td>Agama</td>
<td>:</td>
<td><select name="select">
    <option>Islam</option>
    <option>Kristen</option>
    <option>Budha</option>
    <option>Hindhu</option>
    <option>Tiong Hoa</option>
    <option>Protestan</option>
    </select></td>
</tr>
<tr>
<td>Prestasi yang diraih</td>
<td>:</td>
<td></td>
</tr>
<tr>
<td></td>
<td></td>
<td><textarea name="textarea" cols="20" rows="4"></textarea></td>
</tr>
<tr>
<td></td>
<td></td>
<td><input type="submit" name="submit" value="Submit">
<input type="reset" name="reset" value="Reset"></td>
</tr>
</table>

</form>
</body>

</html>
Praktikum Pem.Web ke-3
Pada Praktikum ke-3 ini mempelajari pembuatan halaman web html dengan table. 
Untuk Tampilannya seperti gambar dibawah ini


Dan untuk scriptnya seperti di bawah ini

<html>
<style type="text/css">
</style>
<body>

<center><table width="901" border="0">
<tr>
<td height="79" colspan="3" style="background-color:#008B8B;">
<h1 align="center" class="style4">Halaman Web 2 </h1></td>
</tr>

<tr valign="top">
<td width="186" style="background-color:#ADE8E6;width:100px;text-align:top;">
  <ul>
  <li><a target="_blank" href="http://uad.ac.id/" >Link UAD</a></li>
  <li><a target="_blank" href="http://fti.uad.ac.id">Link FTI UAD</a></li>
  <li><a target="_blank" href="http://tif.uad.ac.id/tif/">Link TIF UAD</a></li>
  <li><a target="_blank" href="http://www.petamanan.co.cc/">Link My Blog</a></li>
  </ul>
  <center>
  </center></td>
<td width="705" style="background-color:#EEEEEE;height:200px;width:400px;text-align:top;">
<br>
  <center><table width="274" height="124" border="1">
    <tr>
      <td><center><img src="http://is.uad.ac.id/files/50-tahun-UAD-logo.jpg" alt="Pulpit rock" width="120" height="108" /></center>
      <center>Logo 51 tahun UAD</center></td>
      <td><center><img src="http://is.uad.ac.id/files/50-tahun-UAD-logo.jpg" alt="Pulpit rock" width="120" height="108" /></center>
      <center>Logo 51 tahun UAD</center></td>
    </tr>
    <tr>
      <td><center><img src="http://is.uad.ac.id/files/50-tahun-UAD-logo.jpg" alt="Pulpit rock" width="120" height="108" /></center>
      <center>Logo 51 tahun UAD</center></td>
      <td><center><img src="http://is.uad.ac.id/files/50-tahun-UAD-logo.jpg" alt="Pulpit rock" width="120" height="108" /></center>
      <center>Logo 51 tahun UAD</center></td>
    </tr>
  </table></center>
  <p>&nbsp;</p>  </td>
<td width="186" style="background-color:#ADE8E6;width:100px;text-align:top;">
<h2><div align=center>BELAJAR<img src="http://is.uad.ac.id/files/50-tahun-UAD-logo.jpg" alt="Pulpit rock" width="120" height="108" /></div>
</h2>
</td>
</tr>


<tr>
<td  height="79" colspan="3" style="background-color:#008B8B;text-align:center;">
Copyright © 2012 Alas Roban</td>
</tr>
</table>
</center>

</body>
</html>