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