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