Skip to content

Instantly share code, notes, and snippets.

@bemjb
Created July 18, 2014 18:09
Show Gist options
  • Save bemjb/d93806e8e40d81caf2c7 to your computer and use it in GitHub Desktop.
Save bemjb/d93806e8e40d81caf2c7 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<style>
body {
font-family: Times New Roman, Verdana, serif;
}
</style>
<body>
This is some text.
</body>
<script>
var body = document.querySelector('body');
var fontFamily = getComputedStyle(body).fontFamily;
body.innerHTML = body.innerHTML + '<p>' + fontFamily + '</p>';
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment