HTML (Hyper Text Markup Language)超文本标记语言
HTML 文件后缀一般为.html .htm
网页标题
<body>
<h1><font color="red">这是个网页!</font></h1>
<a href="http://www.baidu.com" target="_blank">这是个超链接</a>
<br><!--换行-->
<table border="1" align="center" width="20%">
<!--行-->
<tr>
<!--列-->
<th><!--th 居中 加粗-->
aa
</th>
<td align="center">
<b>bb</b>
</td>
</tr>
<tr>
<td>
cc
</td>
<td>
dd
</td>
</tr>
<!--表单form-->
<form>
username:<input type="text" value="hello world"><br>
password:<input type="password"><br>
复选框: 1<input type="checkbox">
2<input type="checkbox">
3<input type="checkbox"><br>
性别:男<input type="radio" name="gender">
女<input type="radio" name="gender">
<br>
下拉选择:
<select>
<option> 1 </option>
<option> 2 </option>
</select>
<br>
textarea:
<textarea>
</textarea>
<br>
file:
<input type="file">
<br>
<input type="submit" value="提交">
<input type="reset" value="重置">
<input type="button" value="对话框" onclick="javascript:alert('对话框');">
<br>
图片:<img src="D:\练习\网页设计\第三章 Html语言基础\images/1.jpg">
</form>
</table>
</body>