0%

web基础

html 入门基础

1. 文本,列表,超链接,图片

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE>
<html>
<head>
<meta charset="UTF-8">
<title>首页</title>
<style type="text/css">
h1 {
color: red;
}
</style>
</head>
<body>
<h1>hello world 标题1</h1>
<h2>hello world 标题2</h2>
<h3>hello world 标题3</h3>
<p>hello world 段落</p>
<i>hello world 斜体</i>
<br/>
<cite>hello world 引用</cite>
<br/>
<b>hello world 加粗</b>
<strong>hello world 强调加粗</strong>
<br/>
<del>hello world 删除</del>
<a>hello world 文本</a>
<!-- 无序列表 -->
<ul type="circle">
<li>Coffee</li>
<li>Milk</li>
</ul>
<!-- 有序列表 -->
<ol type="A">
<li>Bread</li>
<li>Juice</li>
</ol>

<a href="http://www.baidu.com" target="_blank">访问百度</a>
<p>如果你将target属性设置为“_blank”,链接将在新窗口打开</p>
<a name="tips">基本的注意事项</a>
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
<a href="#tips">跳到提示</a>

<img src="boat.gif" alt="图片不存在" />
<br/>
<!-- 可使用本地图片和链接图片 -->
<img src="/img/nanamimi.png" height="200px" width="500px"/>
<script type="text/javascript">

<script type="text/javascript">

</script>
</body>
</html>

结果显示

查看html