A Pen by jmichalenko on CodePen.
Last active
September 11, 2019 01:00
-
-
Save jmichalenko/ef1fcdcfda59c63a8385f421deff7dcd to your computer and use it in GitHub Desktop.
Internal CSS
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<style> | |
#paragraphOne { | |
color: blue; | |
font-size: 46px; | |
} | |
</style> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
</head> | |
<body> | |
<p id="paragraphOne"> This is the first paragraph would be. </p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment