blob: a640c4e5469c8990dde894c2585c05325801b901 [file] [log] [blame]
<!DOCTYPE html>
<!--
| If no font family is specified that supports the characters, determine the
| font to use via system font fallback.
| https://www.w3.org/TR/css3-fonts/#system-font-fallback
-->
<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: 500px;
}
</style>
</head>
<body>
<div class="containing-block">
<span>🍔🌞😜</span>
</div>
</body>
</html>