Created
October 22, 2017 03:42
-
-
Save ClockEndGooner/31750c48d32c756599099f388b922169 to your computer and use it in GitHub Desktop.
CSS3 Simple Definitions // source http://jsbin.com/lufayig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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><h1> Header</h1> | |
<h2><h2> Header</h2> | |
<h3><h3> Header</h3> | |
<h4><h4> 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><h1> Header</h1> | |
<h2><h2> Header</h2> | |
<h3><h3> Header</h3> | |
<h4><h4> 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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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