CSS
行间样式表
<p style="width=30 height=30"></p>
内部样式表
<head>
<style>
*{
margin:0;
padding:0;
}
</style>
</head>
外部样式表
<link rel="stylesheet" type="text/css" href="css/index.css" />
JavaScript
写在行内
<input type="button" value="按钮" onclick="alert('Hello World!')" />
写在script标签中(可在body中也可在head中)
<script>
alert('Hello World!');
</script>
写在js文件中
<script src="main.js"></script>