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