实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<div id="container" style="width:500px">
6
7
<div id="header" style="background-color:#FFA500;">
8
<h1 style="margin-bottom:0;">Main Title of Web Page</h1></div>
9
10
<div id="menu" style="background-color:#FFD700;height:200px;width:100px;float:left;">
11
<b>Menu</b><br>
12
HTML<br>
13
CSS<br>
14
JavaScript</div>
15
16
<div id="content" style="background-color:#EEEEEE;height:200px;width:400px;float:left;">
17
Content goes here</div>
18
19
<div id="footer" style="background-color:#FFA500;clear:both;text-align:center;">
20
Copyright © shouce.ren</div>
21
22
</div>
23
 
24
</body>
25
</html>
26