We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 358e38c commit fcf3e25Copy full SHA for fcf3e25
foundations/01-css-methods/index.html
@@ -5,19 +5,10 @@
5
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7
<title>Methods for Adding CSS</title>
8
- <link rel="stylesheet" href="style.css">
9
- <style>
10
- p {
11
- background-color: green;
12
- color: white;
13
- font-size: 18px;
14
- }
15
- </style>
16
</head>
17
<body>
18
<div>Style me via the external method!</div>
19
<p>I would like to be styled with the internal method, please.</p>
20
- <!-- an orange background and a font size of 18px -->
21
- <button style="background-color: orange; font-size: 18px;">Inline Method</button>
+ <button>Inline Method</button>
22
</body>
23
</html>
0 commit comments