Use on the webTotal Use [ 5793 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/d175aa3050d9f56b7ddf2f9a752c9783?family=Patricks" 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/d175aa3050d9f56b7ddf2f9a752c9783?family=Patricks);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Patricks";
src: url("https://db.onlinewebfonts.com/t/d175aa3050d9f56b7ddf2f9a752c9783.eot");
src: url("https://db.onlinewebfonts.com/t/d175aa3050d9f56b7ddf2f9a752c9783.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/d175aa3050d9f56b7ddf2f9a752c9783.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/d175aa3050d9f56b7ddf2f9a752c9783.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/d175aa3050d9f56b7ddf2f9a752c9783.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/d175aa3050d9f56b7ddf2f9a752c9783.svg#Patricks")format("svg");
}
2CSS rules to specify fonts
font-family: "Patricks";