以下示例是关于Html中包含HTML文件样本用法的示例代码,想了解HTML文件样本的具体用法?HTML文件样本怎么用?HTML文件样本使用的例子?那么可以参考以下相关源代码片段来学习它的具体使用方法。
<!doctype html>
<html>
<head>
<title>Example website</title>
<meta charset="utf-8"/>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<style type="text/css">* {font-family: Inter;} body {padding: 2em;}</style>
</head>
<body>
<div>
<h1>Hello world!</h1>
<p>This is a example website.</p>
<!-- Hi! -->
<p>
<a href="https://tiagorangel.com/">Learn More</a>
</p>
</div>
</body>
</html>
本文地址:https://www.itbaoku.cn/snippets/785207.html