05.htm

来自「介绍了javascript的常用的函数」· HTM 代码 · 共 28 行

HTM
28
字号
<html>
<head>
<title>设定超链接样式</title>
<style type="text/css">
<!--
a:link {
	font-family: "黑体(P)";
	font-size: 20px;
	color: #000000;
	text-decoration: none;
}
a:hover {
	color: #FF0000;
	text-decoration: underline;
}
a:visited {
	font-family: "黑体(P)";
	font-size: 20px;
	color: #000000;
	text-decoration: none;
}
-->
</style>
</head>
<body>
<a href="#">设定超链接样式</a>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?