前端 代码 登录页面

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>登录页面</title>

    <style>

        *{

            background-image: url(./06.jpg);

        }

        div{

            position: relative;

            margin: 300px auto;

            margin-top:100px;

            width: 300px;

            background-image: url(./05.jpg);

            text-align: center;

        }

        button{

            width: 250px;

            height: 50px;

            border-radius: 15px;

        }

    </style>

</head>

<body>

    <div>

        <h1>登录页面</h1>

        账号:<input type="text"><br><br>

        密码:<label for=""></label><input type="password"><br><br><br>

        <button><a href="./yemian.html" target="_blank" style="font-size: 35px; text-decoration: none; color: rgb(252, 158, 174);">登&nbsp;&nbsp;录</a></button>

    </div>

</body>

</html>

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <link rel="icon" href="./07.ico">

    <title>亚亚版权所有</title>

    <style>

        *{

            background-image: url(./04.jpg);

        }

    </style>

</head>

<body>

    <table border="2" cellspacing="1" cellpadding="18" align="center" height="620px" >

        <tr>

           

            <td colspan="2" width="500px" height="5">

                &ensp;<a href="#1">个人介绍</a>&ensp;&ensp;&ensp;

                <a href="#2">新闻咨询</a>&ensp;&ensp;&ensp;

                <a href="#3">就业团队</a>&ensp;&ensp;&ensp;

                <a href="#4">技术支持</a>&ensp;&ensp;&ensp;

                <a href="https://www.tfent.cn/" target="_blank">专业售后</a>&ensp;&ensp;&ensp;

                <a href="https://www.gov.cn/" target="_blank">线上客服</a>&ensp;

            </td>

        </tr>

        <tr>

            <a id="1"></a>

            <td width="350px" height="200px" style="background-image: url(./01.jpg);" height="100%" width="100%"></td>

            <td width="150px" height="200px">

                <form action="">

                   <label for="">邮箱:</label><input type="text" name="" id="" value=""><br>

                   <label for="">密码:</label><input type="password" name="" id="" ><br>

                   性别:<input type="radio" name="sex" id="" value="">男<input type="radio" name="sex" id="" value="">女<br>

                   爱好:<input type="checkbox" name="" id="">吃饭

                   <input type="checkbox" name="" id="">睡觉

                   <input type="checkbox" name="" id="">打豆豆<br>

                   所在部门:<select name="" id="">

                    <option value="">开发十八部</option>

                    <option value="">开发十九部</option>

                    <option value="">开发二十部</option>

                    <option value="">开发二十一部</option>

                   </select><br>

                   <input type="reset" value="重置">

                   <input type="submit" value="发送">

                </form>

            </td>

        </tr>

        <tr></tr>

            <td colspan="2" height="200px">

                sdfj的艺人运营机构包括艺人策划、整体包装及宣传推广。机构由深谙日韩偶像运营模式及国内娱乐圈形势的精英团队组成,

                从未出道时便对旗下练习生进行包装宣传,包括参与自制节目及网络短剧的录制,并在网络以及电视媒体进行投放,保证其稳定的

                曝光率,累积艺能经验,使练习生在出道后更加顺利成功。<a id="2"></a>

                出道后,依托sdfj丰富的媒体资源,配备专业的经纪团队,根据每位艺人不同的个性特点制定相应的长期发展计划。公司不仅

                和日韩、港台的经纪公司拥有着良好的合作沟通关系,为艺人日后的事业提供广阔的发展前景;同时还和索尼音乐、华纳唱片等唱

                片公司进行音乐合作,为艺人的音乐唱片发行出版提供了多种渠道。旗下艺人能在时代峰峻艺人经纪模式下,获得多方面的良好演

                艺发展。现如今公司签约的优秀练习生,依靠公司强大专业的师资力量,定期接受全方位艺能培训,公司承担前期全部培训费用。

            </td>

        </tr>

        <tr>

            <td  colspan="2" height="200px"  style="background-image: url(./02.jpg);"><a id="3"></a></td>

        </tr>

        <tr>

            <td width="350px" height="15px">

                版权信息:本网站归某某某某某某所有 <a id="4"></a> 团队:前端开发21部 联系方式:18564686248

            </td>

            <td width="150px" height="15px"><img src="./03.jpg" alt="" width="100px" height="100px"></td>

        </tr>

    </table>

</body>

</html>

 

 

 

 

 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
抱歉,我是一个语言模型,无法生成前端代码。但是,我可以提供一些前端代码的示例,用于生成登录界面。 HTML代码: ```html <!DOCTYPE html> <html> <head> <title>Login Page</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" type="text/css" href="style.css"> </head> <body> <div class="login-box"> <h2>Login</h2> <form> <div class="user-box"> <input type="text" name="username" required=""> <label>Username</label> </div> <div class="user-box"> <input type="password" name="password" required=""> <label>Password</label> </div> <button type="submit">Login</button> </form> </div> </body> </html> ``` CSS代码: ```css * { margin: 0; padding: 0; box-sizing: border-box; } body { background: #333; } .login-box { width: 320px; height: 420px; background: #fff; color: #333; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 10px #000; padding: 20px; } .login-box h2 { text-align: center; margin-bottom: 30px; } .login-box form { display: flex; flex-direction: column; } .login-box form .user-box { position: relative; } .login-box form .user-box input { width: 100%; padding: 10px 0; font-size: 16px; color: #333; margin-bottom: 30px; border: none; border-bottom: 1px solid #333; outline: none; background: transparent; } .login-box form .user-box label { position: absolute; top: 0; left: 0; padding: 10px 0; font-size: 16px; color: #333; pointer-events: none; transition: 0.5s; } .login-box form .user-box input:focus ~ label, .login-box form .user-box input:valid ~ label { top: -20px; left: 0; color: #03a9f4; font-size: 12px; } .login-box button { background: #03a9f4; color: #fff; border: none; padding: 10px 20px; cursor: pointer; margin-top: 30px; border-radius: 5px; font-size: 16px; } ``` 这段代码生成了一个简单的登录界面,包括用户名和密码输入框、登录按钮等元素。你可以根据需要修改代码,以实现更复杂的登录界面。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值