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