文件名为temperature-conversion.html的代码如下
<!DOCTYPE html>
<html>
<head>
<h1 style="color:redfont-size:32px">Temperature Conversions</h1>
<br/>
</head>
<body>
Author: CHEN Da Wen<br/>
Student ID: 123456789d<br/>
<br/>
<b>Use this form to convert celsius temperatures to fahrenheit:</b><br/>
<br/>
<table>
<form name="converter" action="temperature-converter.php" method="post">
<tr><td>Starting temperature(Celsius):</td>
<td><input type="text" name="start" value=""/></td></tr>
<tr><td>Ending temperature(Celsius):</td>
<td><input type="text" name="end" value=""/></td></tr>
<tr><td>Increment value:</td>
<td><input style="width:100px" type="text" name="increment" value=""/></td></tr>
<tr><td colspan=2>&nbsp</td></tr>
<tr><td colspan=2><input type="button" name="conversion" value="Display Conversion Table" onclick="converter.submit()"/>
<input type="button" name="clear" value="Clear" onclick="converter.reset()"/></td></tr>
</form>
</table>
</body>
</html>
<!DOCTYPE html><html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<table border="1px" width="600px" align="center" style="text-align: centerfont-size: 12px">
<tr>
<td>可乐</td>
<td>雪碧</td>
<td>馒头</td>
<td>米饭</td>
<td>酱汁</td>
<td>茄汁</td>
</tr>
<tr style="background-color: redfont-weight: bold color: white">
<td colspan="2">饮料</td>
<td colspan="2">主食</td>
<td colspan="2">调料</td>
</tr>
</table>
</body>
</html>
首先说明,html不算编程。下面给出代码:(简单写了一下)<!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
{
background-color:
#0000ff
}
-->
</style>
</head>
<body>
<img
src="./images/sky.gif"
width="80"
height="80"
/>
本网页支持简体中文
</body>
</html>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)