javaweb 网页

来源:互联网 发布:su建模软件 编辑:程序博客网 时间:2024/05/15 16:36
<!DOCTYPE html><!--To change this license header, choose License Headers in Project Properties.To change this template file, choose Tools | Templatesand open the template in the editor.--><html>    <head>        <title>我的网页程序</title>        <meta charset="UTF-8">        <meta name="viewport" content="width=device-width, initial-scale=1.0">    </head>    <body  background="img.jpg">    <center>        <h2>            <font color="blue">hello word</font>        </h2>        <h3>            你是谁?        </h3>        <h1>嗨,欢迎来到网页编程学习世界!</h1>        <table border="1" width="80%">            <tr>                <td colspan="6">            <center> <font size="20">字体显示</font> </center>                </td>                <td rowspan="3">                </td>            </tr>            <tr>                <td><b>粗体</b>                <td><b>粗<i>斜体</i>体</b>                <td><u>下划线</u></td>                <td><u>下<s>中划线</s>划线</u></td>                <td>90<sup>o</sup></td>                <td><font color="blue">H<sub>2</sub>O</font></td>            </tr>        </table>        </center>    <a href="http://localhost:8080/WebApplication3/index.html">转入用户登录界面</a>    </body></html>
<!DOCTYPE html><!--To change this license header, choose License Headers in Project Properties.To change this template file, choose Tools | Templatesand open the template in the editor.--><html>    <head>        <title>用户登录界面</title>        <meta charset="UTF-8">        <meta name="viewport" content="width=device-width, initial-scale=1.0">    </head>    <body>    <form action="" method="post">        编  号:<input type="text" name="userid" value="NO." size="2" maxlength="2"><br>        密  码:<input type="password" name="userpass" value="请输入用户名"><br>        性  别:<input type="radio" name="sex" value="boy" checked>男                          <input type="radio" name="sex" value="girl">女<br>        部  门:<select name="dept">                              <option value="技术部">技术部</option>                              <option value="财务部">财务部</option>                              <option value="销售部" selected>销售部</option>                          </select><br>        兴  趣:<input type="checkbox" name="inst" value="唱歌">唱歌                          <input type="checkbox" name="inst" value="唱歌">唱歌                          <input type="checkbox" name="inst" value="游泳">游泳                          <input type="checkbox" name="inst" value="编程" checked>编程<br>        说  明:<textarea name="note"  cols="30" rows="6">                                    请按照相关信息准确填写                          </textarea><br>        <input type="submit"  value="注册" ><input type="reset"  value="重置"> <br>                  </form>    <center> <font color="red" size="100">注意:请不要在公共网络上填写相关信息!</font></center>    <a href="http://localhost:8080/WebApplication1/index.html">返回上一页</a>    </body></html>


原创粉丝点击