0
点赞
收藏
分享

微信扫一扫

简单网页设计

一叶随风_c94d 2022-04-07 阅读 94
html

[/code][code=html]
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Cake Shop</title>
</head>
<body>
<style type="text/css">
    body{
        border: 2px dotted black;
        margin: 2% 20%;
        background-color: #d2b49c;
        height: auto;
        font-family: microsoft yahei;
        text-align: center;
    }
    .pink{
        color: aquamarine;
    }
</style>
<h1>蛋糕店</h1>
<img alt="蛋糕" width="180px" src="1.jpg" title="水果蛋糕">
<h2>水果蛋糕&nbsp&nbsp&nbsp30元</h2>
<p>一些鲜水果或者一些果酱、果汁、果粒果酱为主要原材料制作而成的一种<font class="pink">水果口味的慕斯</font>。</p>

<img alt="蛋糕" width="180px" src="2.jpg" title="巧克力蛋糕">
<h2>巧克力蛋糕&nbsp&nbsp&nbsp50元</h2>
<p>一些鲜水果或者一些果酱、果汁、果粒果酱为主要原材料制作而成的一种水果口味的慕斯。</p>

 

</body>
</html>
[/code]

举报

相关推荐

0 条评论