How to set hyperlink text color in Html

巴扎黑
Release: 2017-06-03 14:42:30
Original
7496 people have browsed it

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 tag.

Basic syntax:

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:

Use vlink can set the color of the visited hyperlink text

Basic syntax:

<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>
Copy after login

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!

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!