Inspiro-media
asked on
Problem linking css file to html doc
hi guys,
I am having an issue linking my stylesheet to my html file here is the code:
<!doctype html>
<html lang="en">
<head>
<title>Steve Test</title>
<meta charset="utf-8">
<a rel="stylesheet" type="text/css" href="css/style.css"></a>
</head>
<body>
<h1>Steves Test</h1>
<p>This is a test website</p>
</body>
</html>
h1 {
color: blue
font: arial;
}
p {
color: green;
}
Any help would be appreciated thanks.
I am having an issue linking my stylesheet to my html file here is the code:
<!doctype html>
<html lang="en">
<head>
<title>Steve Test</title>
<meta charset="utf-8">
<a rel="stylesheet" type="text/css" href="css/style.css"></a>
</head>
<body>
<h1>Steves Test</h1>
<p>This is a test website</p>
</body>
</html>
h1 {
color: blue
font: arial;
}
p {
color: green;
}
Any help would be appreciated thanks.
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
ASKER
I've requested that this question be closed as follows:
Accepted answer: 0 points for Inspiro-media's comment #a41462146
for the following reason:
very informative
Accepted answer: 0 points for Inspiro-media's comment #a41462146
for the following reason:
very informative
A valid answer was supplied for solving the question.
ASKER