Answer the question
In order to leave comments, you need to log in
Where to find customers for content?
Good day to all. Actually the question is in the title. Previously, I found customers without problems through forums, job sites, acquaintances. Now it's kind of a bug. I registered on the site fl.ru, but such sharks are sitting there, I don’t even know if it’s really possible to gain clients there at all. Finding a full-time job is not a problem, but it doesn't suit me for many reasons. I also tried to go abroad, everything is ok with English, but not enough to write articles for native speakers, and in most cases they require you to write something. Tell me how to be? And where is the best place to go?
Answer the question
In order to leave comments, you need to log in
Maybe it all depends on the price? now there are many different tools that can create content on a global scale.
oh, if you write well, be your own customer, open a blog or some other site and earn.
Yes, you understand correctly, just specify one font name and links to fonts of the corresponding spelling, for example:
@font-face{
font-family: 'Merriweather';
src:url();
...
font-weight: 300;
font-style: normal;
}
Styles and font-family are not related, they can be used independently, however weight can be defined for a font.
p {
font-family: "Times New Roman", Georgia, Serif;
}
In this case, Times New Roman is selected if it is available, if not, Georgia, and finally, if both are not available, Serif. @font-face {
font-family: MyHelvetica;
src: local("Helvetica Neue Bold"),
local("HelveticaNeue-Bold"),
url(MgOpenModernaBold.ttf);
font-weight: bold;
}
Helvetica Neue Bold
, alternate spellings HelveticaNeue-Bold
and adds them to the MyHelvetica
. Since this font is bold, font-weight
. /* Код для подключения шрифта в /css/stylename.css */
/* font-family: "MerriweatherRegular"; */
@font-face {
font-family: "MerriweatherRegular";
src: url("../fonts/MerriweatherRegular/MerriweatherRegular.eot");
src: url("../fonts/MerriweatherRegular/MerriweatherRegular.eot?#iefix")format("embedded-opentype"),
url("../fonts/MerriweatherRegular/MerriweatherRegular.woff") format("woff"),
url("../fonts/MerriweatherRegular/MerriweatherRegular.ttf") format("truetype");
font-style: normal;
font-weight: normal;
}
/* font-family: "MerriweatherBold"; */
@font-face {
font-family: "MerriweatherBold";
src: url("../fonts/MerriweatherBold/MerriweatherBold.eot");
src: url("../fonts/MerriweatherBold/MerriweatherBold.eot?#iefix")format("embedded-opentype"),
url("../fonts/MerriweatherBold/MerriweatherBold.woff") format("woff"),
url("../fonts/MerriweatherBold/MerriweatherBold.ttf") format("truetype");
font-style: normal;
font-weight: normal;
}
...
@font-face {
font-family: "Merriweather";
src: url("../fonts/MerriweatherRegular/MerriweatherRegular.eot");
src: url("../fonts/MerriweatherRegular/MerriweatherRegular.eot?#iefix")format("embedded-opentype"),
url("../fonts/MerriweatherRegular/MerriweatherRegular.woff") format("woff"),
url("../fonts/MerriweatherRegular/MerriweatherRegular.ttf") format("truetype");
font-style: normal;
font-weight: normal;
}
@font-face {
font-family: "Merriweather";
src: url("../fonts/MerriweatherBold/MerriweatherBold.eot");
src: url("../fonts/MerriweatherBold/MerriweatherBold.eot?#iefix")format("embedded-opentype"),
url("../fonts/MerriweatherBold/MerriweatherBold.woff") format("woff"),
url("../fonts/MerriweatherBold/MerriweatherBold.ttf") format("truetype");
font-style: normal;
font-weight: bold;
}
@font-face {
font-family: "Merriweather";
src: url("../fonts/MerriweatherItalic/MerriweatherItalic.eot");
src: url("../fonts/MerriweatherItalic/MerriweatherItalic.eot?#iefix")format("embedded-opentype"),
url("../fonts/MerriweatherItalic/MerriweatherItalic.woff") format("woff"),
url("../fonts/MerriweatherItalic/MerriweatherItalic.ttf") format("truetype");
font-style: italic;
font-weight: normal;
}
...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question