x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
body {
7
margin-left: 200px;
8
background: #5d9ab2 url("/examples/img_tree.png") no-repeat top left;
9
}
10
11
.container {
12
text-align: center;
13
}
14
15
.center_div {
16
border: 1px solid gray;
17
margin-left: auto;
18
margin-right: auto;
19
width: 90%;
20
background-color: #d0f0f6;
21
text-align: left;
22
padding: 8px;
23
}
24
</style>
25
</head>
26
27
<body>
28
<div class="container">
29
<div class="center_div">
30
<h1>Hello World!</h1>
31
<p>This example contains some advanced CSS methods you may not have learned yet. But, we will explain these methods in a later chapter in the tutorial.</p>
32
</div>
33
</div>
34
</body>
35
</html>