1<!DOCTYPE html>
2<html>
3<head>
4
5 <link rel="stylesheet" href="styles.css">
6
7</head>
8<body>
9
10<h1>This is a heading</h1>
11<p>This is a paragraph.</p>
12
13</body>
14</html>
1<link rel="stylesheet" href="stylesheet.css">
2<div class="mydiv"></div>
3<style>
4.mydiv {
5background-color: /*Color*/;
6color: /*Another color*/;
7}
8</style>