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 ba809af commit 36fe5ccCopy full SHA for 36fe5cc
starter/03-CSS-Fundamentals/index.html
@@ -21,6 +21,7 @@ <h6>The Basic Language of the Web: HTML</h6>
21
<h1>📘 The Code Magazine</h1>
22
23
<nav>
24
+ <strong>This is the navigation</strong>
25
<a href="blog.html">Blog</a>
26
<a href="#">Challenges</a>
27
<a href="#">Flexbox</a>
starter/03-CSS-Fundamentals/style.css
@@ -1,11 +1,13 @@
1
-h1,
2
-h2,
3
-h3,
4
-h4,
5
-p,
6
-li {
7
- font-family: sans-serif;
+/* * Universal styles*/
+
+* {
+ /* border-top: 10px solid #1098ad; */
+}
+body {
8
color: #444;
9
+ font-family: sans-serif;
10
+ border-top: 10px solid #1098ad;
11
}
12
13
h1,
@@ -145,3 +147,7 @@ a:active {
145
147
footer p {
146
148
color: green;
149
150
151
+nav {
152
+ font-size: 18px;
153
0 commit comments