blob: aa176c3298c63984788b825ca17bfbf5e33096ad [file] [log] [blame]
<!DOCTYPE html>
<!--
| In Cobalt, bold fonts are never synthetically boldable.
-->
<html>
<head>
<meta charset="utf-8">
<style>
body {
margin: 0;
font-family: Roboto;
font-size: 30px;
font-weight: normal;
color: #fff;
}
.containing-block {
background-color: #03a9f4;
width: 700px;
}
.roboto-normal {
font-family: roboto-face;
font-weight: normal;
}
.roboto-bold {
font-family: roboto-face;
font-weight: bold;
}
.noto-serif-normal {
font-family: serif-face;
font-weight: normal;
}
.noto-serif-bold {
font-family: serif-face;
font-weight: bold;
}
.dancing-script-normal {
font-family: dancing-script-face;
font-weight: normal;
}
.dancing-script-bold {
font-family: dancing-script-face;
font-weight: bold;
}
@font-face {
font-family: roboto-face;
src: local(Roboto-Bold);
}
@font-face {
font-family: serif-face;
src: local(NotoSerif-Bold);
}
@font-face {
font-family: dancing-script-face;
src: local(DancingScript-Bold);
}
</style>
</head>
<body>
<div class="containing-block">
<div class="roboto-normal">The Hegemony Consul</div>
<div class="roboto-bold">The Hegemony Consul</div>
<div class="noto-serif-normal">The Hegemony Consul</div>
<div class="noto-serif-bold">The Hegemony Consul</div>
<div class="dancing-script-normal">The Hegemony Consul</div>
<div class="dancing-script-bold">The Hegemony Consul</div>
</div>
</body>
</html>