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