index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf8">
<title>はじめてのCSS</title>
<meta name="description" content="初めてCSSを勉強するサイトです。">
<link rel="stylesheet" href="style.css">
</head>
<body>
<p class="underline">おはよう!</p>
<p>こんにちは!</p>
<p class="message">こんばんわ!</p>
</body>
</html>
style.css
.message {
color: green;
}
.underline {
text-decoration: underline;
}