21 lines
479 B
HTML
21 lines
479 B
HTML
<!DOCTYPE html>
|
|
|
|
<!-- Demonstrates inline CSS with P tags -->
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<title>css</title>
|
|
</head>
|
|
<body>
|
|
<p style="font-size: large; text-align: center;">
|
|
John Harvard
|
|
</p>
|
|
<p style="font-size: medium; text-align: center;">
|
|
Welcome to my home page!
|
|
</p>
|
|
<p style="font-size: small; text-align: center;">
|
|
Copyright © John Harvard
|
|
</p>
|
|
</body>
|
|
</html>
|