HTML Tech Demo: A Simple Example
<!DOCTYPE html>
<html>
<head>
<title>HTML Tech Demo</title>
</head>
<body>
<h1>Tech Demo</h1>
<p>This is an example of a tech demo.</p>
<div>
<p>HTML elements can be styled using <strong>CSS</strong>.</p>
</div>
<style>
div {
padding: 20px;
background-color: #eee;
}
</style>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/lnAs 著作权归作者所有。请勿转载和采集!