How To Use "monotype Corsiva" Font In Css Statement?
Solution 1:
If you look on google fonts I'm sure you will find something similar. Here is an example of using Google web fonts with a font called "Cookie" and it is quite similar.
Firstly put this in your page ...
<scriptsrc="https://ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js"></script><script>WebFont.load({
google: {
families: ["Cookie:regular"]
}
});
</script>
and then to use it in your actual web page include it in your css like so.
body {
font-family: "Cookie"
}
If you do check out google fonts you can add as many as you want using the javascript code above, just simply stick a comma between each font and make sure they are in quotes like this...
<scriptsrc="https://ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js"></script><script>WebFont.load({
google: {
families: ["Lato:100,300,400,700,900","Karla:regular","Cookie:regular"]
}
});
</script>
and the 100,300,400,700,900 - is the font weight, so by declaring it here you can use it in your css.
and to be safe here is a JSFiddle
enjoy :)
Solution 2:
This part of your code is correct. There are syntax errors later in the style sheet, but they do not prevent the declaration font-family:Monotype Corsiva, Times, Serif
from taking effect. It causes Monotype Corsiva to be used, if the user’s computer has such a font installed. Apparently, the computer where you tested this does not have that font.
Solution 3:
Add this script
<scriptsrc="https://ajax.googleapis.com/ajax/libs/webfont/1.4.7/webfont.js"></script><script>WebFont.load({
google: {
families: ["Lato:100,300,400,700,900","Karla:regular","Cookie:regular"]
}
});
</script>
then add this style
<h2style="font-family: Cookie;">Example</h2>
Solution 4:
- Make sure the font is downloaded and installed on your server.
- And in CSS, your can write this simple code. It will work. It does for me.
font-family: 'Monotype Corsiva';
Post a Comment for "How To Use "monotype Corsiva" Font In Css Statement?"