Created
March 30, 2022 14:31
-
-
Save jeremyboggs/be254886a8b8d4ce984274021fbc24f2 to your computer and use it in GitHub Desktop.
CSS Syntax
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
<h1>This is a heading</h1> | |
<blockquote> CSS language uses what is called a selector in order to define the property or values of a section. The selector is followed by two curly brackets. With these brackets you will begin to define the properties, or appearance, of your webpage. This is what the syntax looks like.</blockquote> |
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
/*syntax for css: | |
selector { | |
property: value; | |
html is the root element of page; if we want to change font... | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment