如果在网页中要用单独一行居中以红色7号字体显示“武汉理工大学”,则下面正确的选项包括( )。
A: <p align="center"><font size="+4" color="
B: FF0000">武汉理工大学</font></p>
C: <p align="center"><font size="7" color="red">武汉理工大学</font></p>
D: <p style="text-align:center;color:red;font-size:xx-large">武汉理工大学</p>
E: <p style="text-align:center;color:rgb(255,0,0);font-size:xx-large">武汉理工大学</p>
A: <p align="center"><font size="+4" color="
B: FF0000">武汉理工大学</font></p>
C: <p align="center"><font size="7" color="red">武汉理工大学</font></p>
D: <p style="text-align:center;color:red;font-size:xx-large">武汉理工大学</p>
E: <p style="text-align:center;color:rgb(255,0,0);font-size:xx-large">武汉理工大学</p>
举一反三
- 下列的 HTML 中,可以产生超链接的是______。 A: < a href="http:// www.kmust.edu.cn " >昆明理工大学< /a > B: < a url="http://www.kmust.edu.cn" >昆明理工大学< /a > C: < a >http:// www.kmust.edu.cn < /a > D: < a name="http:// www.kmust.edu.cn " >昆明理工大学< /a >
- 10.关于行内式引入CSS样式表,以下书写正确的是() A: &lt;pstyle=font-size:12px;color:red;&gt;段落文本&lt;/p&gt; B: &lt;pstyle=&quot;font-size:12px,color:red;&quot;&gt;段落文本&lt;/p&gt; C: &lt;pstyle=&quot;font-size:12px;color:red;&quot;&gt;段落文本&lt;/p&gt; D: &lt;pstyle=&quot;font:12px;color:red;&quot;&gt;段落文本&lt;/p&gt;
- <p>若要使表格的行高为16pt,以下方法中,正确的是( )。</p> A: <table border="1" line-height=”16pt">…</table> B: <table border="1" style="line-height:16">…</table> C: <table border="1" style="line-height:16pt">…</table> D: <table border="1" style="height:16pt">…</table>
- 关于行内式引入CSS样式表,以下书写正确的是( ) A: <p style=font-size:12px; color:red;>段落文本</p> B: <p style="font-size:12px, color:red;">段落文本</p> C: <p style="font-size:12px; color:red;">段落文本</p> D: <p style="font:12px; color:red;">段落文本</p>
- 对于HTML页面,在a开始标签中匹配href属性内容的最合理的正则表达式是什么?假设href属性内容使用双引号包围,需要将匹配内容放到第一个匹配组中。 A: <a href="([^"]*)"[^>*]> B: (?is)<as[^>*]href="([^"]*)"[^>*]> C: <as[^>*]href="([^"]*)"[^>*]> D: <as[^>*]href="([^"]*)">