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