##How to implement and use a screen reader text class
There is one class that should be in every developer's toolbox. This one class can make various features on a site accessible friendly - ranging from icon fonts, links that warn a user that a new window or tab is about to opened, or in general, better UI for screen reader users. This class is handy because there may be text on the site that you want to hide from sighted users, but still have available for those using a screen reader.
You can name the class whatever you’d like. For purposes of this demo, we can call it screen-reader-text. This will be our class for hiding content on a site without hiding it for screen reader users.
When we create this class, we’ll need to write the Css so that it’s cross browser compatible and moves the text out of view without removing it. By removing it, I mean using Css like display: none or visibility: hidden. These will hide the content from both sighted users and screen reader users. This isn’t what we want to use