Skip to content

Instantly share code, notes, and snippets.

@ClockEndGooner
Created October 22, 2017 03:42
Show Gist options
  • Save ClockEndGooner/31750c48d32c756599099f388b922169 to your computer and use it in GitHub Desktop.
Save ClockEndGooner/31750c48d32c756599099f388b922169 to your computer and use it in GitHub Desktop.
CSS3 Simple Definitions // source http://jsbin.com/lufayig
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>CSS3 Simple Definitions</title>
<style id="jsbin-css">
body {
font-family: Arial;
color: DarkBlue;
}
.SmallText {
font-size: 7pt;
}
.RegularText {
font-size: 11pt;
}
.LargeText {
font-size: 32pt;
}
</style>
</head>
<body>
<h1>&lt;h1&gt Header</h1>
<h2>&lt;h2&gt Header</h2>
<h3>&lt;h3&gt Header</h3>
<h4>&lt;h4&gt Header</h4>
<br>
<div class="SmallText">
This is Small Text.
</div>
<br>
<div class="RegularText">
This is Regular Text.
</div>
<br>
<div class="LargeText">
This is Large Text.
</div>
<br>
<script id="jsbin-source-html" type="text/html"><head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>CSS3 Simple Definitions</title>
</head>
<body>
<h1>&lt;h1&gt Header</h1>
<h2>&lt;h2&gt Header</h2>
<h3>&lt;h3&gt Header</h3>
<h4>&lt;h4&gt Header</h4>
<br>
<div class="SmallText">
This is Small Text.
</div>
<br>
<div class="RegularText">
This is Regular Text.
</div>
<br>
<div class="LargeText">
This is Large Text.
</div>
<br>
</body>
</html>
</script>
<script id="jsbin-source-css" type="text/css">body {
font-family: Arial;
color: DarkBlue;
}
.SmallText {
font-size: 7pt;
}
.RegularText {
font-size: 11pt;
}
.LargeText {
font-size: 32pt;
}
</script>
</body>
</html>
body {
font-family: Arial;
color: DarkBlue;
}
.SmallText {
font-size: 7pt;
}
.RegularText {
font-size: 11pt;
}
.LargeText {
font-size: 32pt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment