console
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>学习</title>
<style type="text/css">
body {background-color:whirt;}
p {color:blue;}
</style>
</head>
<body>
<h1 style="font-family:verdana;color:red;text-align:center;">学习笔记</h1>
<h2 style="text-align:center;"><a id="begin">测试</a></h2>
<hr/>
<a href="#end">点击去结尾</a>
<p>这是第一行</p>
<a href="http://www.baidu.com" target="_blank">这是百度地址</a>
<br/>
<img src=" http://www.runoob.com/images/pulpit.jpg" alt="just a joker!"" width="100" height="80" />
<table border="1" cellpadding="10" cellspacing="10">
<caption>表格</caption>
<tr>
<th>month</th>
<th>date</th>
<th colspan="2">time</th>
</tr>
<tr>
<td rowspan="2">
<ul>
<li>apple</li>
<li>banana
<ol type="A">
<li>ban</li>
<li>nana</li>
</ol>
</li>
<li>cat</li>
</ul>
</td>
<td>2</td>
<td>06</td>
<td>56</td>
</tr>
<tr>
<td>20</td>
<td>08</td>
<td>42</td>
</tr>
</table>
<h2 style="text-align:center;">列表</h2>
<hr/>
<dl>
<dt>apple</dt>
<dd>-app</dd>
<dt>banana</dt>
<dd>-ban</dd>
</dl>
<h2 style="text-align:center">布局和表单</h2>
<hr/>
<div id="container" style="width:500px">
<div id="header" style="background-color:#FFA500;">
<h1 style="margin-bottom:0;text-align:center;">主要的网页标题</h1></div>
<div id="menu" style="background-color:#FFD700;height:320px;width:100px;float:left;">
<b>菜单</b><br>
HTML<br>
CSS<br>
JavaScript
<form>
<select>
<option value="python">python</option>
<option value="c#">c#</option>
<option value="java" selected>java</option>
<option value="php">php</option>
</select>
<input type="button" value="hello!">
</form>
</div>
<div id="content" style="background-color:#EEEEEE;height:200px;width:400px;float:left;">
<h4 style="text-align:center;">登录</h4><br/>
<form>
<fieldset>
<legend>信息输入</legend>
ACCOUNT: <br/>
<input type="text" name="account"><br/>
PASSWORD:<br/>
<input type="password" name="pwd"><br/>
<input type="radio" name="sex" value="man">MAN<br/>
<input type="radio" name="sex" value="women">WOMEN<br/>
<input type="checkbox" name="vehicle" value="bike">BIKE<br/>
<input type="checkbox" name="vehicle" value="car"> CAR<br/>
<input type="submit">
<input type="reset">
</fieldset>
</form>
</div>
<div id="footer" style="background-color:#FFA500;clear:both;text-align:center;">
盗版必究</div>
</div>
<h2 style="text-align:center;">框架</h2>
<hr/>
<iframe src="" name="a_iframe"></iframe>
<p><a href="http://www.baidu.com" target="a_iframe" rel="noopener">百度</a></p>
<p id="test">这个会变哟!</p>
<script>
function myfunc()
{
document.getElementById("test").innerHTML="hello HTML!";
}
</script>
<noscript>抱歉,你的浏览器不支持javascript!</noscript>
<button type="button" onclick="myfunc()">点我</button>
<p style="font-size:20px;text-align:center;"><a id="end">结尾语</a></p>
<a href="#begin">再看一遍!</a>
</body>
</html>