diff options
-rw-r--r-- | index.html | 6 | ||||
-rw-r--r-- | style.css | 8 |
2 files changed, 7 insertions, 7 deletions
@@ -7,11 +7,7 @@ <link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet"> - <style> - * { - font-family: "Roboto", sans-serif; - } - </style> + <link rel="stylesheet" href="style.css"> </head> <body> @@ -1,3 +1,7 @@ +* { + font-family: "Roboto", sans-serif; +} + h1::after { display: block; @@ -10,11 +14,11 @@ h1::after { } a { - color: lightgray; + color: #777; text-decoration: none; transition-duration: 0.2s; } a:hover { color: black; -}
\ No newline at end of file +} |