我是HTML的新手(嗯,不仅仅是新的),我尝试格式化所呈现的文本。提供以下代码:
<H1 align="center" face="helvetica">
This is another paragraph.
</H1>
<p>
<font align="center" size="5" face="helvetica" >
This is another paragraph.
</font>
</p>
第一次,虽然面部没有,但是这一切都很好。在另一个汉德,在第二次,大小和面部工作正常,但对齐不是。我做点什么工作吗?
一般来说,有没有好的*和免费的资源?
提前致谢, 太阳
答案 0 :(得分:3)
您需要了解CSS。
基本上,您停止使用这些表示属性,并在外部添加网站的样式(尽管 也可以内联,也可以作为CSS)。
答案 1 :(得分:2)
看起来您正在从旧资源和/或不良资源中学习HTML。
尝试
答案 2 :(得分:1)
<h1 align="center" face="helvetica">
This is another paragraph.
</h1>
<p align="center" >
<font size="5" face="helvetica" >
This is another paragraph.
</font>
</p>
试试。
答案 3 :(得分:0)
最好先看看CSS的基础知识(www.thenewboston.com),我发现它是初学者教程的最佳来源。
如果您使用CSS,这就是您的代码的布局方式。
<style>
h1 {font-family:Helvetica; text-align:center;}
p {font-family:Helvetica; font-size:5px; text-align:center;}
</style>
<body>
<h1>This is another paragraph.</h1>
<p>
This is another paragraph.
</p>
</body>
希望将来能帮助您和HTML,CSS和JS一起工作!
问候!