help i keep getting error code and am not sure what im doing wrong
<!DOCTYPE html>
<html>
<head>
<title>Result</title>
<link-type="text/css" rel="stylesheet" href="stylesheet.css"/>
</head>
<body>
<h1>hellp</h1>
<p> svjkdm </p>
</body>
</html>
h1 {
font-family: verdana;
color: #576d94;
}
p {
font-size; 18px
color: #4A4943;
}
attributes (type, rel, href) are seperated by spaces, between link and type you have a dash/hyphen instead of a space.
for next time, use one of the two following options to make your code/indent is visible:
select your code and press ctrl + shift + c (or cmd + shift + c if you use a mac)
if this instructions are unclear, you can also insert 3 backticks before and after your code, like so:
```
<p>visible</p>
```
the backtick is located above the tab key on your keyboard