Home  >  Article  >  Web Front-end  >  How to set hyperlink text color in Html

How to set hyperlink text color in Html

巴扎黑
巴扎黑Original
2017-06-03 14:42:307485browse

In order to highlight the hyperlink, the hyperlink text usually uses a different color from other text, and a horizontal line is added at the lower end of the hyperlink text. The hyperlink text of a web page has a default color. By default, the browser uses blue as the color of the hyperlink text, and the color of the visited text becomes dark red. These colors can also be customized in the 6c04bd5ca3fcae76e30b72ad730ca86d tag.

Basic syntax:

df5827f91480e185c09aeedc87f403be

It works on all elements in the web page that are not set individually.

Use alink to set the color of the hyperlink when the mouse clicks

Basic syntax:

96db14665d0c96d2f7e905596427e3b9

Use vlink can set the color of the visited hyperlink text

Basic syntax:

646313b0d1f61813806c8dd5bd36d7bc

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>设置链接文字的颜色</title>
</head>
<body link="#9933ff" alink="#0066ff" vlink="#ff0000">
    <a href="http://www.baidu.com">链接的文字</a>
</body>
</html>

In web pages, general text The hyperlinks on are all blue (of course, they can also be set to other colors), and there is an underline under the text. When you move the mouse pointer to the hyperlink, the mouse pointer will change into the shape of a hand. At this time, click with the left mouse button to jump directly to the web page connected to the hyperlink. If a hyperlink has been viewed, the text color of the hyperlink will change.

The above is the detailed content of How to set hyperlink text color in Html. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn