首页 > 代码库 > Hello world!
Hello world!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Document</title>
<style type="text/css">
body{
font-family: cursive;
font-weight: 700;
font-size: 30px;
color: #fc9;
}
span{
color:#9cf;
}
.yeah{
width: 300px;
height: 300px;
background-color: #cf9;
border:1px solid #cf9;
margin: 0 auto;
}
.world{
width: 200px;
margin: 0 auto;
margin-top: 120px;
}
.world .ok{
color:9fc;
}
</style>
</head>
<body>
<div>
<div>
Helleo world <span>!</span><br/>
<span> I‘m Leo.</span>
</div>
</div>
</body>
</html>