zoukankan      html  css  js  c++  java
  • HTML学习笔记——标签设置格式

    1>标签设置格式

    <!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">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    <style type="text/css">
    /*空两个文字*/
        p{
            width: 300px;
            border: 4px solid blue;
            margin: 0 auto;
            text-indent: 2em;
            line-height: 1.5em;
            /*加粗*/
            font-weight: 700;
            /*倾斜*/
            font-style: italic;
            /*大写*/
            font-variant: small-caps;
        }
    
    </style>
    </head>
    
    <body>
        <p>www.baidu.com今天是星期一今天是星期一今天是星期一今天是星期一今天是星期一今天是星期一今天是星期一</p>
    </body>
    </html>
  • 相关阅读:
    string 流
    文件输入和输出
    IO类
    算法
    MySQL常用处理方法
    linux curl工具
    设计模式
    C语言编程流程
    js escape 与php escape
    js undefined易错分析
  • 原文地址:https://www.cnblogs.com/tonglin0325/p/4664855.html
Copyright © 2011-2022 走看看