Source Code Tugas PWDPB Part 1 :
<html>
<head>
<title>Tugas PHP Part 1 by.Tama</title>
<style type="text/css">
.tgl{
text-align: center;
font-family: arial;
font-size: 50px;
color: blue;
}
.text {
text-align: center;
font-family: arial;
font-size: 35px;
color: red;
}
</style>
</head>
<body>
<?php
echo '<div class="tgl">'. date("d-M-Y") .'</div>';
echo '<br>';
echo '<div class="text">Di atas adalah tanggal hari ini</div>';
?>
</body>
</html>
Hasil dari Source Code diatas :