23 lines
523 B
HTML
23 lines
523 B
HTML
<!DOCTYPE html>
|
|
|
|
<!-- Adds outer DIV, demonstrates cascading -->
|
|
|
|
<html lang="en">
|
|
<head>
|
|
<title>css</title>
|
|
</head>
|
|
<body>
|
|
<div style="text-align: center">
|
|
<div style="font-size: large">
|
|
John Harvard
|
|
</div>
|
|
<div style="font-size: medium">
|
|
Welcome to my home page!
|
|
</div>
|
|
<div style="font-size: small">
|
|
Copyright © John Harvard
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|