zoukankan      html  css  js  c++  java
  • web基础,用html元素制作web页面

    <!DOCTYPE html>
    < lang="en">
    <head>
        <meta charset="UTF-8">
        <title>登陆界面</title>
    </head>
    <h1>
     用户界面
    </h1>
    <body>
    <div id="container" style=" 400px">
    <div id="header" style="background-color: aqua"><h2 align="center">登陆</h2></div>
    <div id="content">
        <form action="">
            username:<input type="text" name="user" placeholder="请输入用户名"><br>
            password:<input type="password" name="password">
            <br>
            <input type="radio" name="role" value="stu">student
            <input type="radio" name="role" value="tea">teacher
            <br>
            <input type="checkbox" value="true"><span>rember</span> <a href=""> 登陆问题请点</a><br>
            <input type="button" value="login" onclick="alert('登陆验证')">
            <input type="button" value="cancel">
        </form>
    </div>
    
    <div id="footer" style="background-color: aqua ; clear: both ; text-align: center"><i>@版权</i></div>
    </div>
    <div>
            选择<select>
                <option>点击</option>
                <option>收藏</option>
                <option>关注</option>
            </select>
        <ul>
            <li>python</li>
            <li>html</li>
        </ul>
        </div>
    
    
    </body>
    </html>

    用户界面

    username:
    password:
    student teacher
    rember 登陆问题请点
    选择
    • python
    • html
  • 相关阅读:
    面试题总结
    h5c3新特性
    redis常用命令大全
    windows下挂载linux的nfs网络硬盘
    mysql之char、varchar、text对比
    Lua与C的交互
    通信模型socket
    程序编译流程
    区块链共识机制(POW、POS、DPOS等)的优缺点
    .net c#获取自定义Attribute
  • 原文地址:https://www.cnblogs.com/zheng01/p/7680177.html
Copyright © 2011-2022 走看看