TUGAS UJIAN WEB
2.Dengan menggunakan CSS Internal format LINK sehingga
memiliki karasteristik sbb:
- Tidak memiliki garis bawah
- Tiap LINK berwarna merah
- Pada saat mouse diatas LINK buat berwarna hitam
- Setiap LINK yang sudah diklik buat berwarna hijau
3. Jika ditekan tombor kiri gerakkan ke kiri jika ditekan tombol
kanan gerakan logo.jpg kekanan
JAWABAN :
<html>
<head>
<title>ujian</title>
<style
type="text/css">
a{text-decoration:none;
color:red;}
a:hover{color:black;}
</style>
</head>
<body>
<table border=1px
width=50%>
<tr>
<td colspan=2
align=center> <button type="button">kanan</button>
<img src="logo.jpg">
<button type="button" valign=right>kiri</button>
</td>
</tr>
<tr>
<td rowspan=2>
Menu<br>
<a href=" ">Profil</a><br>
<a href=" ">Buku
Tamu</a><br>
<a href="
">Kontak</a></td>
<td>
<table>
<form>
<tr>
<td colspan=3
align=center>LOGIN</td>
</tr>
<tr>
<td>User</td>
<td>:</td>
<td><input type=text
name=txtuser></input></td>
</tr>
<tr>
<td>password</td>
<td>:</td>
<td><input type=password
name=txtpass></input></td>
</tr>
<tr>
<td colspan=3 align=center><input
type=submit value=Login> </input>
<input type=reset value=Cancel>
</input></td>
</tr>
</form>
</table>
</td>
</tr>
<tr>
<td>
</td>
</tr>
</table>
</body>








