-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha_href.html
More file actions
76 lines (65 loc) · 1.99 KB
/
a_href.html
File metadata and controls
76 lines (65 loc) · 1.99 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!--
* @由于个人水平有限, 难免有些错误, 还请指点:
* @Author: cpu_code
* @Date: 2020-08-11 14:00:34
* @LastEditTime: 2020-08-11 17:56:51
* @FilePath: \web\a_href\a_href.html
* @Gitee: [https://gitee.com/cpu_code](https://gitee.com/cpu_code)
* @Github: [https://github.com/CPU-Code](https://github.com/CPU-Code)
* @CSDN: [https://blog.csdn.net/qq_44226094](https://blog.csdn.net/qq_44226094)
* @Gitbook: [https://923992029.gitbook.io/cpucode/](https://923992029.gitbook.io/cpucode/)
-->
<html>
<head>
<title> a_href </title>
</head>
<body>
<!-- 超链接<a></a> -->
<!-- 回到某一位置 -->
<a href="#mike"> 去中间看看 </a>
<br>
<br>
<!-- 页面外的超链接 -->
<a href = "https://blog.csdn.net/qq_44226094"> cpucode </a>
<br>
<br>
<!-- 内网 -->
<!-- _blank 浏览器总在一个新打开、 未命名的窗口中载入目标文档 -->
<a href="a.html" target="_blank"> 打开本地一个新的网页 </a>
<br>
<br>
<!-- 图片超链接 -->
<a href="a.html"><img src="image/a.jpg"></a>
<br>
<br>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<!-- 回到某一位置 -->
<p> <a name="mike"> 中间 </a> </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<p> cpucode </p>
<!-- 回到顶部 -->
<a href="#top"> 回到顶部 </a>
<br>
</body>
</html>