如何在 html 文档中内联使用 css 文档的代码

how to use the codes of a css document inline in html document

我想用HTML创建一个联系我们的页面(不允许使用CSS文档),然后我找到了我想要的但是代码写在2个文档中,HTML 代码写在 HTML 文档中,样式在 CSS 文档中。我正在寻找一种在 HTML 文档中内联使用 CSS 代码的方法。你能帮帮我吗?

您需要使用这样的样式标签:<style> </style> 并且里面会出现 CSS.

最好将 CSS 保存在单独的文件中,以使代码看起来更清晰

<html>

<head>
  <style>
    p {
      color: green
    }
  </style>
</head>

<body>
  <p>All your custom CSS can go in the head section of the HTML</p>
</body>

</html>