感谢您的支持,我会继续努力的!
打开微信扫一扫,即可进行扫码打赏哦
点我查看本站打赏源码!
Powered by RUNCODEX.COM,学的不仅是技术,更是梦想!!!
<html>
<body>
<h1>标题1</h1>
<p>这个是段落中的一些文本</p>
<p>这是另外一个段落</p>
<h2>标题2</h2>
<table border="1">
<tr>
<th>Name</th>
<th>E-mail</th>
<th>Phone</th>
</tr>
<td>Doe.John</td>
<td>Jdoe@example.com</td>
<td>132-4567-8902</td>
<td>Mary.White</td>
<td>Mary@example.com</td>
<td>143-3456-2345</td>
</table>
<h3>标题3</h3>
<p>访问我们的<a herf="http://www.runcodex.com/css/css-intro.html">首页</a>or我们的<a herf="http://www.runcodex.com/try/demo_source/demo_default.htm">CSS教程</p>
<p>你应该具备的知识:</p>
<ol type="A">
<li>HTML</li>
<li>XHTML</li>
</ol>
<p>你喜欢的饮料是:</p>
<ul >
<li>茶</li>
<li>Coffee</li>
<li>Water</li>
</ul>
</body>
</html>
输入 JavaScript 代码……
xxxxxxxxxx
body
{
font-size:75%;
font-family:"lucida calligraphy",arial,'sans serif';
background-color:#DCDCDC;
color:#8A2BE2;
margin:10px;
}
h1 {font-size:200%;}
h2 {font-size:140%;}
h3 {font-size:110%;}
th {background-color:#D3D3D3;}
td {background-color:#FFFAF0;}
a:link {color:#8A2BE2;text-decoration:none;}
a:hover {color:red;font-weight:bold;text-decoration:none;}
a:visited {text-decoration:none;}