<html lang="en">
<head>
<title>A Simple CSS Example in CSS Tutorial</title>
<style>
p.mycss{
font-size: 23px;
color: blue;
}
</style>
</head>
<body>
<p>This is a simple paragraph without CSS.</p>
<p class="mycss">This is a paragraph with applies CSS.</p>
</body>
</html>