1<html>
2 <head>
3 <link rel="stylesheet" type="text/css" href="mystyle.css"></link>
4 </head>
5
6 <body>
1<head>
2 <link rel='stylesheet' href='style.css'>
3</head>
1It's a tag
1<!DOCTYPE html>
2<html>
3<head>
4<style>
5body {background-color: powderblue;}
6h1 {color: blue;}
7p {color: red;}
8</style>
9</head>
10<body>
11
12<h1>This is a heading</h1>
13<p>This is a paragraph.</p>
14
15</body>
16</html>