HTML 网页,按照题目内容,编写1个HTML网页。详细在图里,求HTML代码,急用

(如图所示。内容以英文为准。图1-2是题目内容,图3是题目内容的中文翻译,图4是题目要填写的资料)

文件名为temperature-conversion.html的代码如下

<!DOCTYPE html>

<html>

<head>

<h1 style="color:red;font-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>

追问

请问你能根据这个html的代码,再编写1个PHP文件吗?谢谢。答案请传送到邮件[email protected]

网页链接

追答

我这里没有测试条件,所以帮不上忙,你可以找其他人帮你.

温馨提示:答案为网友推荐,仅供参考
第1个回答  2022-09-12
典型的Html+Php就行温度转换,需要用post提交到php