Snippets

Here is your code snippet

Code


text alignment

text alignment

<html>
<head>
<title>Untitled Document</title>
<style type="text/css">
h1 {text-align: center}
h2 {text-align: left}
h3 {text-align: right}
</style>
</head>

<body>

<h1>example 1</h1>
<h2>example 2</h2>
<h3>example 3</h3>

</body>
</html>