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 8e92a09 commit 34dc85bCopy full SHA for 34dc85b
foundations/01-css-methods/index.html
@@ -1,6 +1,7 @@
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
+ <link rel="stylesheet" href="styles.css">
5
<meta charset="UTF-8">
6
<meta http-equiv="X-UA-Compatible" content="IE=edge">
7
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@@ -9,6 +10,6 @@
9
10
<body>
11
<div>Style me via the external method!</div>
12
<p>I would like to be styled with the internal method, please.</p>
- <button>Inline Method</button>
13
+ <button style="background-color: blue;">Inline Method</button>
14
</body>
15
</html>
foundations/01-css-methods/styles.css
@@ -0,0 +1,4 @@
+div {
+ background-color: red;
+ color: darkmagenta;
+}
0 commit comments