Decorative Flower
Her Realm, Personal website and blog of Cole
Jan 23

What I Do

Most people don’t know what I do for a living. Many people have a hazy idea, but the idea that someone writes everything that find online is just foreign to people who don’t use the Internet, understand SEO or visit websites other than Facebook. Apparently, nearly everyone I know falls into those categories.

So, yes, I write. I write content that winds up on websites. More often than not, these are linkbait articles that exist pretty much solely for SEO purposes. If that makes no sense to you, that’s okay. I rarely get a byline and almost never know what sites my written content writes up with. I don’t follow up after I get paid.  Sometimes, I write product descriptions. The reviews that I write on Reviews by Cole are a hobby and are in no way related to my job.

I prefer to write about tech topics. SEO is okay, but it does get old quickly. I hate having to be repetitive, which is why I feel drained when I have to write 800 words or more about a specific topic. In the beginning, I wrote many articles for DMS about smartphones, tablets, iPod and website maintenance. These are probably among my favorites. When I enjoy a topic, writing comes so much more easily. However, I don’t always get the choice.

In the past week, I have written about these topics:

  • WordPress and SEO
  • Kitchen and bathroom remodeling
  • Fashion that flatters your figure
  • Roofing
  • Pedispas
  • Urgent care facilities
  • Used Dell servers
  • Online Casinos
  • Mobile slot games
  • Sciatica
  • Concussions
  • Comic inspired movies
  • Interview mistakes
  • Day trader computers
  • Lingerie
  • Sex toys
  • Dressing in business casual
  • Rebuilding a relationship/trust after an affair
  • Acid reflux disease
  •  Pulmonary arterial hypertension
  • Jennifer Lawrence’s awards show fashion
  • Live music in Torontio
  • Legionnaire’s disease
  • Maplestory hair styles

As I finish this post, I will head to work on a program review/description.

So, you know. I do what they pay for. It’s at times pretty unglamorous. The reason why I write articles (people want to manipulate search engines) is sometimes disheartening, and I often fear that this content is just created for robots and not human consumption. However, I do sometimes have fun and learn something along the way.


Dec 16

How to Use Custom Fonts on Your Website (In ALL Browsers)

If you’re a WordPress user, you may have used Cufon to make your titles appear on custom fonts. This isn’t a terrible way, but every extra plugin slows down your website. Plus, people who don’t use Cufon don’t have that option. So what can you do?

Thanks to CSS 3, you can simply use the @font-face rule to show anything you want in a specific font as long as you have the TTF.

First, you must locate the TTF file on your computer and make an EOT copy to ensure compatibility with Internet Explorer. You can use this TTF to EOT converter to get both files. Then, upload the files to your server. For my purposes, the TTF and EOT files reside in my theme directory. However, you might make a folder such as “current-theme/fonts” if you use many fonts.

Secondly, you must specif the location of the file on your server and the name you’ll use for the font in your CSS like the following.

@font-face
{
font-family: MyFont;
src: url('My-font.ttf'),
url('My-font.eot'); /* IE9 */
}

In this example,  we’re going to use the font name “MyFont” and the font files are calls “My-font.” They’re located in the same directory as the stylesheet.

The next step is to actually use the

h1
{font-family: MyFont;
}

All my h1s will use “MyFont” as the face. I can now use MyFont as the face for any element within my stylesheet. It doesn’t matter whether the viewer has the original font file on her computer.

Now, not all mobile devices support this method even when they claim to support @font-face. This is the case with IE9 on Windows Phones, the stock browser on Android 2.1 and Symbian’s Nokia browser. However, Safari on iOS4 and greater, Android 2.2 stock browser and all browsers on Android 4.0 seem to be compatible. When the browser doesn’t understand @font-face, a default font will show  — either the system default (when you haven’t specified a body font) or the default font face you use for your body.

This is still better than nothing, of course.

Let me know how this works for you!

 


Skip to toolbar