ICO图标logo生成代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IP Icon</title>
<style>
.ip-icon {
width: 100px;
height: 100px;
background-color: #3498db;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 66px;
color: white;
font-family: Arial, sans-serif;
}
</style>
</head>
<body>
<div class=ip-icon>IP</div>
</body>
</html>汉字版本:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>IP Icon</title>
<style>
.ip-icon {
width: 100px;
height: 100px;
background-color: #3498db;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 66px;
color: white;
font-family: Arial, "黑体", sans-serif;
font-weight: bold;
}
</style>
</head>
<body>
<div class=ip-icon><span style='padding-top:10px'>附</span></div>
</body>
</html>
