请生成一个网站前端代码,在网站的左上角写上标题,标题为湛江市麻章区电子商务协会,字体为宋体,字号大小为20,使用深蓝色字体颜色,在网站底部,有备案号,电话号码显示
时间: 2024-04-22 18:28:29 浏览: 43
企业网站前端代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF8">
<title>湛江市麻章区电子商务协会</title>
<style>
#title {
font-family: "宋体";
font-size: 20px;
color: #000080;
position: absolute;
top: 10px;
left: 10px;
}
#footer {
position: fixed;
bottom: 0;
width: 100%;
height: 50px;
background-color: #f5f5f5;
text-align: center;
padding-top: 15px;
font-family: Arial, sans-serif;
font-size: 14px;
}
</style>
</head>
<body>
<div id="title">湛江市麻章区电子商务协会</div>
<!-- Your website content goes here -->
<div id="footer">
备案号: Your Record Number | 电话号码: Your Phone Number
</div>
</body>
</html>
阅读全文