HTML常用标签

Original 2019-04-17 23:01:57 234
abstract:<html><head><title>HTML常用标签</title><link  rel=" shortcut icon" type=" image/x- icon" href="a/b.png"><style>a{ text-decoration:non

<html>

<head>

<title>HTML常用标签</title>

<link  rel=" shortcut icon" type=" image/x- icon" href="a/b.png">

<style>

a{ text-decoration:none}

ul li{list-style:none}

table{heiht:300px; width:200px; border:1px solid #pink;}

</style>

</head>

<body>

<h1>我的第一行</h1>

<a href="baidu.com">百度</a>

<ol>

<li>1</li>

<li>2</li>

</ol>

<ul>

<li>1</li>

<li>2</li>

</ul>

<form action="baidu.com" method="post/get">

</form>

<input   type="text" name="name1">用户名</br>

<input   type="password" name="password">密码</br>

<button>密码</button>

<table>

<tr

<th>1</th>

<th>2</th>

</tr>

<tr>

    <td>1<td>

</tr>

<tr>

<td>1</td>

</tr>

</table>

</body>

</html>

Correcting teacher:查无此人Correction time:2019-04-18 09:09:26
Teacher's summary:完成的不错,html标签很简单,把常用的记熟,赶紧学习后面的。继续加油

Release Notes

Popular Entries