search
HomeWeb Front-endHTML TutorialDetailed explanation of how to set font color in html and how to use ps to obtain the accurate font color of html

Here we introduce three font color settings including HTML font, CSS text color, and css hyperlink font color. We also introduce the method of using PS to obtain accurate color values. You can usually flexibly expand the use of setting color values ​​​​for fonts and backgrounds

1. HTML font color settings

In HTML we use the font tag to set the font Content settings color.

1. Font syntax:

The code is as follows:

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8" /> 
<title>font字体颜色在线实例</p></title> 
</head> 
<body> 
<font color="#FF0000">我是红色字体</font> 
<table width="300" border="1"> 
<tr> 
<td><font color="#0000FF">你好</font></td> 
<td></p></td> 
</tr> 
</table> 
</body> 
</html>

First of all, font is a pair of regular tags, put the font text content into the tag, and set the color color in the font tag +The corresponding color value can set the font color in the font tag object.

2. Example of setting font color in html font

2-1. Complete code of html font color example:

The code is as follows:

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8" /> 
<title>css实现字体颜色 在线演示</p></title> 
<style> 
.</p>{color:#F00} 
</style> 
<!-- html注释说明:使用style标签设置字体颜色 --> 
</head> 
<body> 
<p class="</p>">我字体是红色</p> 
<p style="color:#00F">我字体是蓝色</p> 
<!-- p标签内使用style属性设置字体颜色 --> 
</body> 
</html>

The above examples are respectively Set the color of the font individually and set the color of the font in the table

2-2, Screenshot of the font color example

Detailed explanation of how to set font color in html and how to use ps to obtain the accurate font color of html

html Screenshot of the font color setting case

2-3. Online demonstration: View case

To change the font color, you only need to change the color value.

2. html p css font color setting

Set the font color through css style in html.

There are two ways to use css to set the html font color, one is CSS within the tag, and the other is external CSS.

1. Introduction to basic knowledge

When using external CSS, you can put the CSS code separately into the CSS file and use html link to introduce CSS (html introduces css), or you can use tag, create CSS. You can also use the style attribute within the html tag to set the css color.

2. p+CSS Example Demonstration

Here are two methods to implement HTML font color settings, one using css in the tag, and the other using the style tag to implement font color setting.

3. The complete HTML source code of the example

The code is as follows:

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8" /> 
<title>html超链接字体颜色设置 在线演示 </p></title> 
<style> 
a{ color:#00F} 
a:hover{ color:#F00}/* 鼠标经过悬停字体颜色 */ 
/* css 注释说明:以上代码为设置html中超链接统一字体颜色 */ 
.p a{ color:#090} 
.p a:hover{ color:#090} 
/* css注释说明:以上代码为设置html中.p对象内超链接字体颜色 */ 
</style> 
</head> 
<body> 
<p>测试内容我是统一设置的颜色蓝色<a href="http://www.css.com">cSS</a></p> 
<p class="p">我在p对象内,超链接颜色为<a href="#">我是超链接绿色</a></p> 
</body> 
</html>

Use the

4. Screenshot of p css case

Detailed explanation of how to set font color in html and how to use ps to obtain the accurate font color of html

Screenshot of CSS setting font color case example

5. Online demonstration of css+p case: View the case

3. HTML hyperlink A font color setting

There are two situations for setting the color of the anchor text font in html. One is to set the font color uniformly for all a hyperlinks in html. The font color, the other is to set a separate color for the anchor text hyperlink font within the specified object.

Through examples, I will introduce to you the unified setting and individual setting of the font color of hyperlink anchor text in HTML.

1. The complete p+css html code is as follows

<!DOCTYPE html> <html> 
<head> <meta charset="utf-8" /> 
<title>html超链接字体颜色设置 在线演示 </title> <style> 
a{ color:#00F} a:hover{ color:#F00}/* 鼠标经过悬停字体颜色 */ 
/* css 注释说明:以上代码为设置html中超链接统一字体颜色 */ .p a{ color:#090} 
.p a:hover{ color:#090} /* css注释说明:以上代码为设置html中.p对象内超链接字体颜色 */ 
</style> </head> 
<body> <p>测试内容我是统一设置的颜色蓝色<a href="http://www..com"></a></p> 
<p class="p">我在p对象内,超链接颜色为<a href="#">我是超链接绿色</a></p> </body> 
</html>

The blue font of the hyperlink is set uniformly in HTML, while the green font color is the individually set hyperlink font color.

2. Screenshot of hyperlink font color example

Detailed explanation of how to set font color in html and how to use ps to obtain the accurate font color of html

css hyperlink font example effect screenshot

3. Online demonstration: View case

Package download of the above three p+CSS cases:

Download now (2.928KB)

4. How to obtain the accurate font color required for HTML

To To obtain accurate color values, Photoshop (ps) software is generally used. The following teaches you how to use PS to obtain the color value of a certain font, and flexibly apply it to obtain the color value of a certain background, picture, or border by obtaining the font value.

Detailed explanation of how to set font color in html and how to use ps to obtain the accurate font color of html

If we want to get the specific color value of the "CSS" blue color of the above picture

1. Open this picture in PS

Detailed explanation of how to set font color in html and how to use ps to obtain the accurate font color of html

psOpen this picture

2. Use the "Select Foreground Color" or "Select Background Color" tool of the PS tool

Detailed explanation of how to set font color in html and how to use ps to obtain the accurate font color of html

Here we click the "Foreground Color" tool in the red box

3. The "Select Foreground Color" tab pops up

After the second step , the "Select Foreground Color" tab will pop up. At the same time, the mouse pointer will turn into a straw-like icon "Color Picker". At this time, click where you need to get the color value. If the picture is small and difficult to click accurately, you can use this To enlarge the image "ctrl+++" can continuously enlarge the image.

Detailed explanation of how to set font color in html and how to use ps to obtain the accurate font color of html

Get the accurate color value "0000FF"

4. Set the color value obtained using

color:#0000FF

Tips: When using color values, generally go directly to PS to copy the color values ​​to avoid manual input errors. At the same time, don’t forget to add the “#” sign before the color value.

5. HTML font color summary

Here we introduce three font color settings including HTML font, CSS text color, and css hyperlink font color. We also introduce the use of PS to obtain accurate colors. value method. You can usually flexibly expand the use of fonts and background color values.

For more detailed information on how to set font color in HTML and how to use ps to obtain the accurate font color of HTML, please pay attention to the PHP Chinese website for related articles!

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
What is the purpose of the <datalist> element?What is the purpose of the <datalist> element?Mar 21, 2025 pm 12:33 PM

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

What is the purpose of the <progress> element?What is the purpose of the <progress> element?Mar 21, 2025 pm 12:34 PM

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

What is the purpose of the <meter> element?What is the purpose of the <meter> element?Mar 21, 2025 pm 12:35 PM

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

What is the purpose of the <iframe> tag? What are the security considerations when using it?What is the purpose of the <iframe> tag? What are the security considerations when using it?Mar 20, 2025 pm 06:05 PM

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the viewport meta tag? Why is it important for responsive design?What is the viewport meta tag? Why is it important for responsive design?Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use HTML5 form validation attributes to validate user input?How do I use HTML5 form validation attributes to validate user input?Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What are the best practices for cross-browser compatibility in HTML5?What are the best practices for cross-browser compatibility in HTML5?Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

How do I use the HTML5 <time> element to represent dates and times semantically?How do I use the HTML5 <time> element to represent dates and times semantically?Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function