Use on the webTotal Use [ 5554 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/9d7a371539490abd53a5dfb7b67c3753?family=Guazhiru+Regular+Outlined" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/9d7a371539490abd53a5dfb7b67c3753?family=Guazhiru+Regular+Outlined);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Guazhiru Regular Outlined";
src: url("https://db.onlinewebfonts.com/t/9d7a371539490abd53a5dfb7b67c3753.eot");
src: url("https://db.onlinewebfonts.com/t/9d7a371539490abd53a5dfb7b67c3753.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/9d7a371539490abd53a5dfb7b67c3753.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/9d7a371539490abd53a5dfb7b67c3753.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/9d7a371539490abd53a5dfb7b67c3753.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/9d7a371539490abd53a5dfb7b67c3753.svg#Guazhiru Regular Outlined")format("svg");
}
2CSS rules to specify fonts
font-family: "Guazhiru Regular Outlined";