⑴ 美化百度搜索代码使用css 或直接在代码上美化都可以
<input type=text name=word size=30 style=“width:410px;height:30px.border:2px solid #颜色;”>
<input type="submit" value="网络搜索" style=“width:85px;height:34px;border-left:1px insert;background-color:#颜色;”>自己加上颜色的值吧
⑵ HTML代码美化
<html>
<head>
<title>你们都</title>
<style>
body{background:url(http://img1.xcarimg.com/b171/s5313/20130625144159802565.jpg) no-repeat center center;margin:0px auto; }
.parent { width:980px;height:50px;margin:0 auto;text-align:center;}
.children {display:inline-block;width:33%%;height:100%%;}
*+ html .children { display:inline;zoom:1;}
* html .children { display:inline;zoom:1;}
</style>
</head>
<script language=\javaScript\ src=\?getxml=\>
</script>
<BODY onload = \sender(0)\>
<body>
<center>
<h2>当前温度检测</h2>
<div align= center>
<div class=\parent\>
<div class=\children\>温度 : </div>
<div id=\tempId\ class=\children\>00</div>
<div class=\children\>℃</div>
</div>
<br>
<font size= 20 color=blue>
</font>
<form>
<input name=B1 type=submit value=开启>
<input name=B2 type=submit value=关闭>
</form>
</center>
</body>
</html>
文字通过font-family;font-size;font-weight;color等可以美化
按钮要想美化 就给按钮做个背景图片就可以了
希望能帮助你
⑶ 怎么让ultraedit 代码美化
可以设置每种代码各种类型的颜色。用得不太熟,但没查错功能。而Myeclipse里有!!
⑷ 求jsp页面的美化代码,要原代码。
写css样式
⑸ 谁知道这个源码站长Ceo论坛极品美化版!
怎么没网址?????
⑹ 新浪博客的美化以及代码教程
新浪博客横幅图片、文字的代码详细教程
http://blog.sina.com.cn/s/blog_4cfe2da701000a0d.html
⑺ 求css通用代码,美化我的网站
只有看着你的html文件才能去配置css文件,配合相应的图片等。不然只能提供大体的框架,效果不理想的
⑻ 什么软件能规范美化编程的代码我用的是2005
好的编程习惯和美化的代码格式
是平时养成的好习惯
不要想着借助软件提高这些东西
培养自己的好习惯才是最重要的
尽量少用插件
⑼ 求JSP页面美化代码
<%@ page language="java" import="java.util.*" pageEncoding="GB2312"%>
<html>
<body>
<h1>教师信息管理</h1>
<h2><a href="">.教师基本信息维护.</a></h2>
<h2><a href="../iterate.do">.试讲情况的管理.</a></h2>
<h2><a href="">.合同信息记录.</a></h2>
</body>
</html>
<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<base href="<%=basePath%>">
<title>My JSP 'success.jsp' starting page</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
--> </head>
<body>
This is my JSP page. <br>
</body>
</html> <%@ page language="java" import="java.util.*" pageEncoding="GB2312"%>
<html>
<body>
<h2>.新增试讲教师信息.</h2>
<form action="../add.do" method="post">
<table>
<tr><td>姓名:<input type="text" name="id"></td></tr>
<tr><td>授课名称:<input type="text" name="sname"></td></tr>
<tr><td>分数:<input type="text" name="score"></td></tr>
<tr><td>日期:<input type="text" name="date"></td></tr>
<tr><td>联系方式:<input type="text" name="contact"></td></tr>
</table>
<input type="submit" value="提交"><input type="reset" value="重置">
</form>
</body>
</html>