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