HTML5的大多是都是些标签式去制作网页,光学HTML5是没有用的。制作一个网页需要多门语言的。现在大多数培训机构都是直接给你学一套的。
HTML5+CSS3+Javascript(jQuery)+php+mysql+其他搭建框架的
加起来都要学4个月快则3个月就领会,现在做这样的市场上需求量很大。工资开价很高
有的拿着月薪上万,看你技术层次有多高。希望可以帮到你谢谢,望采纳谢谢
其实都还不错的,各有优点嘛!asp和php都还不错的,至于asp哪么多的人用那是因为他是微软开发的,而现在的系统基本上是被微软家族给统治,还有就是,asp学起来也很快,很容易上手的.........这就是asp流行的原因!<?php@$user = $_GET['user']
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html charset=utf-8" />
<title>登录页</title>
<style type="text/css">
body,div{
padding:0
margin:0
}
#total{
margin:0 auto
width:1000px
height:1000px
background:#FF9
position:relative
-webkit-box-shadow:0 0 15px #292929
-moz-box-shadow:0 0 10px #292929
box-shadow:3px 0 45px #292929
}
#login{
width:400px
height:300px
margin:0 auto
position:absolute
top:200px
left:300px
background:url(images/login_bg.png)
border-radius:3px
}
#form_total{
margin:50px
width:300px
height:200px
}
/*设置白色字体*/
#username,input,#password,#forgot_pwd,#go{
color:white
font-size:12px
font-family:Georgia, "Times New Roman", Times, serif
letter-spacing:3px
}
/*设置浮动属性*/
#username,#hsq_user,#input_user,#password,#hsq_pwd,#input_pwd,#forgot_pwd,#go{
float:left
}
#input_user,#password,#input_pwd,#forgot_pwd{
clear:left
}
/**/
#input_user,#input_pwd,input{
width:270px
height:33px
}
/*设置input*/
input{
background:#303030
border-radius:3px
border:0px
padding-left:13px
padding-right:13px
}
/*设置go*/
#go{
width:80px
height:25px
background:#303030
border-radius:3px
border:0px
margin-left:52px
}
/*设置forgot_pwd*/
#forgot_pwd{
font-size:8px
}
/*设置user_png/pwd_png/go*/
#hsq_user,#hsq_pwd{
float:right
}
/*设置上下margin*/
#input_user,#password,#hsq_pwd,#input_pwd,#forgot_pwd,#go{
margin-top:20px
}
/*设置a链接属性*/
#forgot_pwd a:link,#go a:link{
text-decoration:none
color:white
}
#forgot_pwd a:visited,#go a:visited{
text-decoration:none
color:chocolate
}
#forgot_pwd a:hover,#go a:hover{
text-decoration:underline
color:white
}
#forgot_pwd a:active,#go a:active{
color:blue
}
.go{
width:80px
height:25px
background:#303030
border-radius:3px
border:0px
}
</style>
</head>
<body>
<div id="total">
<div id="login">
<div id="form_total">
<form action="loginController.php" method="post" name="testForm">
<div id="username">USERNAME</div>
<div id="hsq_user"><img src="images/hsq_user.png" /></div>
<div id="input_user"><input type="text" name="user" value="<?php echo $user ?>" /></div>
<div id="password">PASSWORD</div>
<div id="hsq_pwd"><img src="images/hsq_pwd.png" /></div>
<div id="input_pwd"><input type="password" name="pwd" /></div>
<div id="forgot_pwd"><a href="#">FORGOT&nbspPASSWORD</a></div>
<div id="go"><input type="submit" value="GO" class="go"/></div>
<!--
后期可以加入【是否记住密码】功能
【验证码防恶意登陆】
-->
</form>
</div>
</div>
</div>
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)