html学习第一讲(内容html常规控件的的使用)
2020-11-26 09:53
标签:style blog class code java tar html学习第一讲(内容html常规控件的的使用),搜素材,soscw.com html学习第一讲(内容html常规控件的的使用) 标签:style blog class code java tar 原文地址:http://www.cnblogs.com/gongxijun/p/3705470.html 1 html>
2 head>
3 title> 这是网页的标题title>
4 head>
5
6 body>
7 h2>font color ="blue"> 这是网页的内容!font>h2>
8
9 a href="http://www.cnblogs.com/gongxijun">这是一个连接a>
10
11 table border="1" align="center" width="80%">
12
13 tr>
14 th>aath>
15 th>bbth>
16 th>ccth>
17 t\r>
18
19 tr>
20 td align="center" >b>ddb>td>
21 td align="center" >b>eeb>td>
22 td align="center">b>ffb>td>
23 tr>
24
25
26 form>
27 username: input type ="text">br>
28 password: input type="password"> br>
29 兴趣: 学习input type="checkbox" >
30 旅游input type="checkbox">
31 睡觉input type="checkbox">br>
32 性别: 男input type="radio" name="gender">
33 女input type="radio" name="gender">br>
34 学历: select>
35 option>小学option>
36 opti on>初中option>
37 option>高中option>
38 option>大学option>
39 select>br>
40 评论: textarea>
41
42 textarea>br>
43 图片: img src="https://www.google.com.hk/images/srpr/logo11w.png">br>
44
45 文件上传: input type ="file">br>
46 input type="submit" value="submit">
47 input type="reset" value="reset">
48 input type="button" value="button" onclick="javascript:alert(‘hello world‘)">br>
49 form>
50 table>
51
52 body>
53 html>