总共分五个文件
images图片就不放上来了,明白原理即可
后台主页框架
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <html> <head> <title>Home</title> <meta charset="utf-8"> </head> <frameset rows="20%,*"> <frameset cols="20%,*"> <frame></frame> <frame src="Title.html"></frame> </frameset> <frameset cols="20%,40%,*"> <frame></frame> <frame src="register01.html" name="register"></frame> <frame src="register02.html" name="register"></frame> </frameset>
</frameset>
</html>
|
后台界面导航
1 2 3 4 5 6 7 8 9 10 11 12 13
| <html> <head> <title>选项</title> <meta charset="utf-8"> </head> <body> <a href="register01.html" target="register">登录</a> <br> <a href="register02.html" target="register">注册</a> </body>
</html>
|
后台系统登录界面
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <html> <head> <title> 用户登录界面 </title> <meta charset="utf-8"> </head> <body> <form action="shop.html" target="_black" align="center"> <p>账号:<input name="username" maxlength="10" placeholder="请输入用户名"></p> <p>密码:<input type="password" name="pwd" placeholder="请输入密码"></p> <p> <input type="submit" value="登录"> <input type="hidden" name="id" value="100"> </p> </form> </body>
</html>
|
后台注册界面
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| <html> <head> <title> 用户注册界面 </title> <meta charset="utf-8"> </head> <body>
<form action="register01.html" target="_black" align="center"> <p>账号:<input name="username" maxlength="10" placeholder="请输入用户名"></p> <p>密码:<input type="password" name="pwd" placeholder="请输入密码"></p> <p>确认:<input type="password" name="rpwd" placeholder="请确认密码"></p> <p>手机号:<input name="phone" maxlength="11" placeholder="请输入十一位手机号"></p> <p> <input type="submit" value="登录"> <input type="reset" value="重置"> <input type="hidden" name="id" value="100">
</p> </form> </body>
</html>
|

商城界面
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
| <html> <head> <meta charset="utf-8"> <title>title</title> </head> <body bgcolor="red"> <table align="center"> <tr> <td> <table cellpadding="0" cellspacing="0"> <tr> <td><img src="images/header_logo1.png"></td> <td><img src="images/header_text1.png"></td> <td><img src="images/header_text2.png"></td> </tr> </table> </td> </tr> <tr> <td> <table cellpadding="0" cellspacing="0"> <tr> <td> <img src="images/midleup.jpg" width="1352"> <br> <br> </td> </tr> </table> </td> </tr> <tr> <td> <table bgcolor="blue" width="650" height="350" align="left" cellspacing="0"> <tr> <td> <img src="images/left01.jpg" width="255" height="180"> <img src="images/left02.jpg" width="125" height="180"> <img src="images/left03.jpg" width="125" height="180"> <img src="images/left04.jpg" width="125" height="180"> </td> </tr> <tr> <td> <img src="images/left11.jpg" width="125" height="180"> <img src="images/left12.jpg" width="125" height="180"> <img src="images/left13.jpg" width="125" height="180"> <img src="images/left14.jpg" width="125" height="180"> <img src="images/left15.jpg" width="125" height="180"> </td> </tr> </table>
<table bgcolor="pink" width="650" height="350" align="right" cellspacing="0"> <tr> <td> <img src="images/right01.jpg" width="255" height="180"> <img src="images/right02.png" width="125" height="180"> <img src="images/right03.png" width="125" height="180"> <img src="images/right04.png" width="125" height="180"> </td> </tr> <tr> <td> <img src="images/right11.png" width="125" height="180"> <img src="images/right12.png" width="125" height="180"> <img src="images/right13.png" width="125" height="180"> <img src="images/right14.png" width="125" height="180"> <img src="images/right15.png" width="125" height="180"> </td> </tr> </table> </td> </tr> <tr> <td> <br> <img src="images/boom.jpg" width="1352"> </td> </tr> <tr> <td> </td> </tr> </table> </body>
</html>
|
