zoukankan      html  css  js  c++  java
  • HTML下标签之应用

    <!doctype html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <meta name="Generator" content="EditPlus®">
    <meta name="Author" content="">
    <meta name="Keywords" content="">
    <meta name="Description" content="">
    <title>Document</title>
    </head>
    <body>
    <!--输入框;placeholder表示输入框提示语;readonly只读-->
    <input type="text" name="玉手" placeholder="请描述你的手" readonly="readonly" >左手</inpput><br>
    <!--复选框 checkbox表示正勾选框;radio表示圆勾选框;checked表示勾选框选中;br换行符-->
    <input type="checkbox" id="sleep" value="吃鸡" >吃饭 </inpput><br>
    <input type="radio" name="性别" checked >女 </inpput><br>
    <!--文件上传-->
    <input type="file"></input><br>
    <!--按钮-->
    <input type="button" name="点我" value="点我点我"></input><br>
    <button name="大大" value="娃哈哈"></button>
    <!--图片-->
    <img src="F:dns documentloophole documentScanning loophole1070漏洞 eportfilesimages_safe.gif" ></img>
    <!--表格-->
    <table border="">
    <tr>
    <td>姓名</td>
    <td>性别</td>
    <td>年龄</td>
    <tr>
    <tr>
    <td>张三</td>
    <td>女</td>
    <td>23</td>
    <tr>

    </table>
    <!--iframe 内嵌其他的html页面-->
    <!--iframe src="http://www.baidu.com"></iframe>
    <!--div-->
    <div class ="one" id="just"><h1>我是柠檬班的</h1></div>
    <!--下拉列表-->
    <select>
    <option>杭州</option>
    <option>厦门</option>
    </select>
    <!--富文本框,多行文本-->
    <textarea cols="20" rows="10"></textarea>
    </body>
    </html>

  • 相关阅读:
    客户机(单线程 和多线程都可以用 主要是看服务器是单线程的还是多线程的)
    获得URl信息
    获取地址
    定时器的使用以及日期的学习
    生产者和消费者
    线程join
    线程的协作
    文件的解压与压缩
    文件的分割与合并
    以各种方式读写文件
  • 原文地址:https://www.cnblogs.com/fengfangbing/p/10075640.html
Copyright © 2011-2022 走看看