Pages

Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts

Thursday, January 3, 2013

Hello Web Design

Sebelum dilanjutkan pingin coba testing tulis skrip "Hello Web Design" untuk PHP, Javascript sama HTML dulu.
Testing kode php:

<?php
echo "Hello Web Design";
?>

Testing kode javascript:

<script language="javascript">
document.write("Hello Web Design");
</script>

Testing tag paragraph:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<p>Hello Web Design</p>
</body>
</html>