ICO图标logo生成代码

zblog2年前zblog问题解答171
<!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>


相关文章

str_pad php 字符串左右补全填充到固定长度的函数

str_pad 是 PHP 中的一个字符串处理函数,用于将字符串填充到指定的长度。其基本语法如下:str_pad(string $input, int $pad_leng...

set_time_limit(0); // PHP取消脚本最大执行时间限制

set_time_limit(0); // 取消脚本最大执行时间限制...

zblog造数据 文章造数据

INSERT INTO zbp_post (`log_CateID`,   `log_AuthorID`,   `log_Tag`,...

php扩展 宝塔一览

php扩展 宝塔一览

必须装是因为 PHP7. 2 存在 绕过open_basedir()的问题,PHP7.4没有这个问题。其他2是提升效率的!!配置文件 可以  disable_classes = "...

zblog文章重复 判断文章是否存在

1、方法1 $article = $zbp->GetListType('Post', 'select * from...