Study HTML

本文最后更新于:2021年10月15日 凌晨

For HTML Study.

常规用法

<!--注释-->

<p align="right">
    <font face="华文新魏" size="6">
        定义对齐、字体、字号
</p>
	</font>

<p>这是普通文本 - <b>这是粗体文本</b></p>

Style用法

<html>
<head>
<style type="text/css">
h1 {color:red}
p {color:blue}
</style>
</head>

<body>
<h1>Header 1</h1>
<p>A paragraph.</p>
</body>
</html>

<html>
<head>
<script type="text/javascript">
function setFont()
{
document.getElementById("p1").style.font="italic bold 12px arial,serif";
}
</script>
</head>
<body>

<p id="p1">This is an example paragraph.</p>

<input type="button" onclick="setFont()" value="Change font" />

</body>
</html>

插入超链接

<a href="https://veenxz.github.io/">Veen's Blog</a>

本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处!