"font"
Bootstrap 3.0.0 Snippet by evarevirus

<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css"> <script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <!------ Include the above in your HEAD tag ----------> <html> <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Tangerine"> <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Ultra"> <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Ribeye"> <link href='https://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'> </head> <body> <div class="tangerine">Lets use some google fonts for test - No Greek here :( </div> <div class="ultra">This is the Ultra font</div> <div class="ribeye">This is the Ribeye font (again no GREEK)</div> <div class="lobster">really this is the lobster? Yep!!</div> <div class="helvet">Helvetica Ελληνικά ΑΒΓΔ</div> </body> </html>
.tangerine { font-family: 'Tangerine'; font-size: 58px; text-shadow: 4px 4px 4px #aaa; } .ultra { font-family: 'Ultra'; font-size: 48px; text-shadow: 2px 2px 4px #aaa; } .ribeye { font-family: 'Ribeye'; font-size: 48px; text-shadow: 2px 2px 4px #aaa; } .lobster { font-family: 'Lobster'; font-size: 52px; text-shadow: -2px -2px 5px #aaa; } .helvet { font-family: 'Helvetica'; font-size: 48px; text-shadow: -2px -2px 5px #aaa; }

Related: See More


Questions / Comments: