HTML基本標箋
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>XXXX</title>
</head>
<body>
</body>
</html>
HTML表單
<form method="post" action="xxx.php" >
<input type="text" name="Usename" >
<input type="password" name="Password">
<input type='hidden' name='SCode' value='$Var3'>
<input type='radio' value='Taipei' name='SLoc'>'Taipei'
<input type='radio' value='Taichung' name='SLoc'>'Taichung'
<input type='radio' value='Kaohsiung ' name='SLoc'>'Kaohsiung
<input type="submit" name="Submit" id="Submit" value="送出" />
<select name="ReporterTitle" id="ReporterTitle" style="font-size:12pt;" width="100" >
<option value=""> </option>
<option value="student" selected="selected"> student </option>';
<option value="teacher"> teacher </option>
</select>
</form>
HTML CSS
<link rel="stylesheet" href="../jquery-ui-1.8.22/css/jquery-ui-1.8.22.css">
<style type="text/css">
A:link { COLOR: blue; TEXT-DECORATION: none }
A:active { COLOR: blue; TEXT-DECORATION: none }
A:visited { COLOR: blue; TEXT-DECORATION: none }
A:hover { COLOR: red; TEXT-DECORATION: none }
</style>
HTML Javascript
<script src="../jquery-ui-1.8.22/js/jquery-1.7.2.min.js"></script>
<script type="text/javascript">
document.write("Hello, world!"); // 在流覽器視窗內直接顯示
alert("Hello, world!"); // 彈出顯示
</script>