Practical operation of using any font in a web page with demonstration

Practical operation of using any font in a web page with demonstration

I have done some research on "embedding non-system built-in fonts in web pages" before. Although it is technically feasible, it does not have much practical significance in China, because a Chinese font file is at least 20M+, and the font files supported by each browser are different. In other words, there must be 2-3 font files of different formats on the server side to cope with each browser. You can see the corresponding picture below.

I thought this little research I did before would not be useful in my future work, but it turned out to be useful. A customer requested to display the time, but the font of the time must be the same as that of a digital watch, as shown in the figure:

First of all, we need to find this font. Since this font is only in ttf format, we need to convert it into various other formats. As for how to convert, there are software and online. I will not specify which one to use here.

After the conversion, you can write the CSS code

Copy code
The code is as follows:

@font-face {
font-family: 'hooray'; /*Name your custom font*/
src: url('http://demo.jb51.net/js/2013/webfontry/hooray.eot');
src: url('http://demo.jb51.net/js/2013/webfontry/hooray.eot?#iefix') format('eot'),
url('http://demo.jb51.net/js/2013/webfontry/hooray.woff') format('woff'),
url('http://demo.jb51.net/js/2013/webfontry/hooray.ttf') format('truetype'),
url('http://demo.jb51.net/js/2013/webfontry/hooray.svg#webfontjKg17VrE') format('svg');
}

As for the call, just like usual, define font-family where needed, and the font name is the name just named:

Copy code
The code is as follows:

font-family: 'hooray';

Download the complete demo. Online Demo

I did not explain the reasons for many things in the article, because there is a lot of information on the Internet about "using arbitrary fonts on web pages", but there are few examples. If you don't understand something, just go to Baidu or Google and you will understand.

Appendix 1: Two new online font conversion websites are added: FontsQuirrel and onlinefontconverter.

<<:  A brief discussion on how to solve the depends_on order problem in Docker-compose

>>:  MySQL learning: five major constraints of database tables explained in detail for beginners

Recommend

Html tips to make your code semantic

Html semantics seems to be a commonplace issue. G...

How to automatically backup mysql remotely under Linux

Preface: Basically, whether it is for our own use...

Things to note when writing self-closing XHTML tags

The img tag in XHTML is so-called self-closing, w...

Analysis of MySql index usage strategy

MySql Index Index advantages 1. You can ensure th...

Simple example of HTML text formatting (detailed explanation)

1. Text formatting: This example demonstrates how...

How to run tomcat source code in maven mode

Preface Recently, I was analyzing the startup pro...

Docker's flexible implementation of building a PHP environment

Use Docker to build a flexible online PHP environ...

Sitemesh tutorial - page decoration technology principles and applications

1. Basic Concepts 1. Sitemesh is a page decoratio...

Reasons and solutions for MySQL sql_mode modification not taking effect

Table of contents Preface Scenario simulation Sum...

Detailed explanation of the interaction between React Native and IOS

Table of contents Prerequisites RN passes value t...

Detailed steps for setting up host Nginx + Docker WordPress Mysql

environment Linux 3.10.0-693.el7.x86_64 Docker ve...

Example of using Docker to build an ELK log system

The following installations all use the ~/ direct...

WeChat applet realizes linkage menu

Recently, in order to realize the course design, ...

Detailed explanation of Vue's ref attribute

Summarize This article ends here. I hope it can b...

Implementing a web calculator based on JavaScript

This article shares the specific code of JavaScri...