Skip to content

Commit 34dc85b

Browse files
01
1 parent 8e92a09 commit 34dc85b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

foundations/01-css-methods/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4+
<link rel="stylesheet" href="styles.css">
45
<meta charset="UTF-8">
56
<meta http-equiv="X-UA-Compatible" content="IE=edge">
67
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@@ -9,6 +10,6 @@
910
<body>
1011
<div>Style me via the external method!</div>
1112
<p>I would like to be styled with the internal method, please.</p>
12-
<button>Inline Method</button>
13+
<button style="background-color: blue;">Inline Method</button>
1314
</body>
1415
</html>

foundations/01-css-methods/styles.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
div {
2+
background-color: red;
3+
color: darkmagenta;
4+
}

0 commit comments

Comments
 (0)