<html>
<head>
<title>CSS Text</title>
<style>
h1 {
text-align: center;
}
p {
text-align: justify;
}
</style>
</head>
<body>
<div>
<h1>Welcome to CSS Tutorial</h1>
<p>I am a CSS Developer!</p>
</div>
</body>
</html>