Amadeus Logo Font choices
HTML
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
<div class="">Arial:</div>
<div class="arial box">
<div class="large">Amadeus</div>
<div>Orchestrating Student Performance</div>
</div>
<div class="">Georgia:</div>
<div class="georgia box">
<div class="large">Amadeus</div>
<div>Orchestrating Student Performance</div>
</div>
<div class="">Times New Roman:</div>
<div class="times box">
<div class="large">Amadeus</div>
<div>Orchestrating Student Performance</div>
</div>
<div class="">Lucida Grande:</div>
<div class="lucida_grande box">
<div class="large">Amadeus</div>
<div>Orchestrating Student Performance</div>
</div>
<div class="">Tahoma:</div>
<div class="tahoma box">
<div class="large">Amadeus</div>
<div>Orchestrating Student Performance</div>
</div>
<div class="">Verdana:</div>
<div class="verdana box">
<div class="large">Amadeus</div>
<div>Orchestrating Student Performance</div>
</div>
CSS
.large {
font-size: 30pt;
}
.box {
background: #ccc;
margin: 10px;
padding: 10px;
padding-bottom: 20px;
border-collapse: separate;
border: solid #ddd 1px;
border-radius: 6px;
}
.arial {
font-family: Arial, Helvetica, sans-serif !important;
font-style: normal;
font-weight: 400;
}
.georgia {
font-family: Georgia, serif !important;
font-style: normal;
font-weight: 400;
}
.lucida_grande {
font-family:"Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", Geneva, Verdana, sans-serif !important;
font-style: normal;
font-weight: 400;
}
.tahoma {
font-family: Tahoma, Geneva, sans-serif !important;
font-style: normal;
font-weight: 400;
}
.times {
font-family:'Times New Roman', Times, serif !important;
font-style: normal;
font-weight: 400;
}
.verdana {
font-family: Verdana, Geneva, sans-serif !important;
font-style: normal;
font-weight: 400;
}