编写一个简单的HTML文件
发布网友
发布时间:2022-04-24 08:49
我来回答
共4个回答
热心网友
时间:2022-06-18 04:45
<html>
<head>
<title>无标题文档</title>
<style type="text/css">
<!--
.STYLE1 {font-family: "宋体"}
.STYLE2 {color: #000000}
.STYLE3 {color: #CC0000}
-->
</style>
</head><body>
<h2 class="STYLE2">写出网页中显示红色部分的主要表单代码?</h2>
<form id="form1" name="form1" method="post" action="">
<h2 class="STYLE3">请选择您喜欢的音乐(只能选一种)</h2>
<h2 class="STYLE3">
<span class="STYLE1">
<label>
<input type="radio" name="RadioGroup1" value="1" />
摇滚</label>
</span></h2>
<h2 class="STYLE3"><span class="STYLE1">
<label>
<input type="radio" name="RadioGroup1" value="2" />
爵士
</label>
<label>
<input name="RadioGroup1" type="radio" value="3" checked="checked" />
流行</label>
</span>
</h2>
</form>
<h2> </h2>
<label></label>
</body>
</html>
这是我按照你的要求做的,上面的我看了下,一楼的不成文件,二楼三楼的按钮没有选定。我做的用了一个CSS,因为颜色的关系,要不然更简单。你把我的代码另存为.html文件,用浏览器打开就行了。对了,那个红色我随便选的。
热心网友
时间:2022-06-18 04:45
<html> <head> <title></title></head><body> <form> <table border="0" > <tr> <td><font color="red">请选择您喜欢的音乐(只能选一种)</font></td> </tr> <tr> <td><font color="red"><input type="radio" name=“a”/>摇滚</font></td> </tr> <tr> <td><font color="red"><input type="radio" name=“a”/>爵士</font></td> </tr> <tr> <td><font color="red"><input type="radio" name=“a” check="checked"/>流行</font></td> </tr> </table> </form></body></html>
热心网友
时间:2022-06-18 04:46
<html>
<head>
<title>无标题文档</title>
<style type="text/css">
<!--
.STYLE2 {color: #FF0000; }
-->
</style>
</head><body>
<p class="STYLE2">请选择你喜欢的音乐(只能选一个)</p>
<form id="form1" name="form1" method="post" action="">
<span class="STYLE2">
<label>
<input type="radio" name="radiobutton" value="radiobutton" />
摇滚
</label>
<label>
<input type="radio" name="radiobutton" value="radiobutton" />
爵士
<input type="radio" name="radiobutton" value="radiobutton" />
流行
</label>
</span>
<p class="STYLE2"><label></label>
</p>
<p> </p>
</form>
<p> </p>
</body></html>
热心网友
时间:2022-06-18 04:46
<form id="form1" name="form1" method="post" action="">
<p class="STYLE1">请选择您喜欢的音乐(只能选一种)</p>
<p class="STYLE1">
<label>
<input type="radio" name="RadioGroup1" value="摇滚" id="RadioGroup1_0" />
摇滚</label>
<label>
<input type="radio" name="RadioGroup1" value="爵士" id="RadioGroup1_1" />
爵士</label>
<label>
<input type="radio" name="RadioGroup1" value="流行" id="RadioGroup1_2" />
流行</label>
</p>
</form>