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