01-html基础总结

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_38224607/article/details/84261287
<!DOCTYPE html>
<html >
<head>
	<meat charset="utf-8"/>
	<title>标题标签</title>
</head>
<body>
	<p>段落标签</p>
	<br/>
	<hr/>
	<font face="楷体" color="#000000"></font>
	<b>加粗</b>
	<i>斜体</i>

	<img height="150px" width="150px" alter="logo图片"/>
	
	<ul type="desc">
		<li></li>
		<li></li>
	</ul>
	<ul type="circle">
		<li>无序标签列表项</li>
		<li></li>
	</ul>
	<ul type="square">
		<li></li>
		<li></li>
	</ul>
	<ol reserved="reserved" type="a">
		<li></li>
		<li></li>
		<li></li>
		<li></li>
	</ol>

	<a href="#" target="_self">点我</a>
	<a href="#" target="_blank">点我</a>

	<table border="1px" cellspacing="0px" cellpadding="0px" bgcolor="pink" width="450px" 		height="100px">
		<tr bgcolor="pink">
			<td><font size="6">6号字体</font></td>
			<td></td>
		</tr>
		<tr>
			<td></td>
			<td></td>
		</tr>	
	</table>

	<frameset rows="20%,*">
		<frame src="top.html" />
		<frameset cols="20%,*">
			<frame src="left.html" />
			<frame name="right" />
		</frameset>
	</frameset>
</body>

</html>

猜你喜欢

转载自blog.csdn.net/qq_38224607/article/details/84261287