案例:html案例     状态:可编辑再运行    进入竖版
 运行结果 
x
London is the capital city of England. It is the most populous city in the United Kingdom,
 
1
<!DOCTYPE html>
2
<html>
3
4
<head>
5
<style>
6
header {
7
    background-color:black;
8
    color:white;
9
    text-align:center;
10
    padding:5px;     
11
}
12
nav {
13
    line-height:30px;
14
    background-color:#eeeeee;
15
    height:300px;
16
    width:100px;
17
    float:left;
18
    padding:5px;          
19
}
20
section {
21
    width:350px;
22
    float:left;
23
    padding:10px;        
24
}
25
footer {
26
    background-color:black;
27
    color:white;
28
    clear:both;
29
    text-align:center;
30
    padding:5px;         
31
}
32
</style>
33
</head>
34
35
<body>
36
37
<header>
38
<h1>City Gallery</h1>
39
</header>
40
41
<nav>
42
London<br>
43
Paris<br>
44
Tokyo<br>
45
</nav>
46
47
<section>
48
<h1>London</h1>