TOP PAID APPS
Guides
CSS Tricks!
CSS is a powerful thing! Just with a few lines of code you can changew the whole look of a website! This time we are going to make some text look like a DOS terminal.
Just open up wherever you store your CSS on your site and paste this into it:
.dos {
}
This is our .dos CSS class. It sets all the atributs of our text to make it look like a funky DOS terminal.
Now to use it just go to whatever content you want to make look like nice and use this code:
<p class="dos">This is a paragraph with a class="dos".</p>
This will make a paragraph styled text in the dosm style. Just change the contents of the brackets to make it whatever text you would like!
Of course you can try nearly any CSS style with it:
<h1 class="dos">This is H1 Style</h1>
You can even colour the text to make it look really old-school!
Thats all for this months Web Feature! Got anymore CSS tricks? Why not tell us about it and we may feature it!
FUN DOS CSS TRICKS!
6