zoukankan      html  css  js  c++  java
  • html的基本框架和常用标签


    <!DOCTYPE html>      
     <html>
      <head>
       <meat charset="utf-8">    
       <title></title>
      </head>
      <body>
       
      </body>
     </html>
     
      jb2312  <meat charset="utf-8">      //防止乱码的格式

    &nbsp;       //空格

    <style type="text/css">
     table,tr,th,td{border:1px solid;}                         //表格
    </style> 
    tdcolspan                                   //合并(行)
    strong   b                                  //粗体
    i,em,cite                                    //斜体
    sup                                                          //上标
    sub                                        //下标
    s,u                                        //划线(中/下)
    big、small                                                                                                                //字号
    <a href="https://www.youacg.com" target="_blank">星幻论坛</a>                         //超链接
     
    font-family:     //字体
    font-size:     //字号
    font-weight:     //字的粗细
     align="center     //居中

    <div>
     <a href="#xiapshuo">推荐小说</a><br />  
    </div>                                                                                                                        //   网页内的跳转
     <div id="xiapshuo">
     <h3>推荐小说</h3>
     <ul>
      <li>遮天</li>
     </ul>
     
        //注册表单
    <form name="" action="" method=""target="">
    用户名<input type="text" name="" value="" size=""/>             //账号框
    密码<input type="password" maxlength=""/>                 //密码框
    <input type="radio" name="sex"/>男
    <input type="radio" name="sex"/>女                     //选择的点
    <input type="submit" value="注册">                       //按钮
  • 相关阅读:
    Serverless 架构到底要不要服务器?
    Serverless 在 SaaS 领域的最佳实践
    20 行代码:Serverless 架构下用 Python 轻松搞定图像分类和预测
    创业公司用 Serverless,到底香不香?
    如何通过 Serverless 轻松识别验证码?
    Serverless 是一种思想状态
    都 2021 年了,Serverless 能取代微服务吗?
    从零入门 Serverless | 架构的演进
    Serverless 的价值
    实验楼前后端代码
  • 原文地址:https://www.cnblogs.com/shrdbk/p/10934983.html
Copyright © 2011-2022 走看看