D
D
driver_of_prius2016-05-27 19:44:29
Content
driver_of_prius, 2016-05-27 19:44:29

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

4 answer(s)
R
Rekrun, 2016-05-27
@Rekrun

Maybe it all depends on the price? now there are many different tools that can create content on a global scale.

P
Puma Thailand, 2016-05-28
@opium

oh, if you write well, be your own customer, open a blog or some other site and earn.

K
Kirill Turovnikov, 2015-08-27
@turovnikoff

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;
}

M
Mak Alexey, 2015-08-27
@S-ed

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.
A font is not available for many reasons, the file is not available, the browser does not support it, etc.
www.w3schools.com/cssref/css3_pr_font-face_rule.asp
@font-face {
  font-family: MyHelvetica;
  src: local("Helvetica Neue Bold"),
       local("HelveticaNeue-Bold"),
       url(MgOpenModernaBold.ttf);
  font-weight: bold;
}

In this example, font-face "creates" a new font Helvetica Neue Bold, alternate spellings HelveticaNeue-Boldand adds them to the MyHelvetica. Since this font is bold, font-weight.
Obviously, the Cyrillic site uses a CSS generator:
/* Код для подключения шрифта в /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;
}
...

It would be smarter to write code like this:
@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;
}
...

That is one family but different predetermined styles and weights.
ps: on older versions of Safari under iOS, such an override can crash the browser if SVG is used

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question