我应该在 html 文件中的什么地方添加 css?

Where should i add css in html file?

我试图在我的博主的博客中添加 css,但出于某种原因,博主主题设计器无法正常工作,所以我决定使用标签直接在代码中添加 css,但我不能在 html 文件中找不到标签。这是我第一次无法理解在哪里。任何人都知道这个文件中要添加 css 的标签在哪里? 我没有完全编码!而且那个人已经不联系我了!

Click Here to see Code

<style> 元素用于将 CSS 样式规则添加到 HTML 文档。该元素预计会出现在文档 <head> 中,但在文档的 <body> 中使用时也会呈现可接受的效果。

要使用外部样式 sheet,请在 HTML 页面的部分添加 link:

<head>
  <link rel="stylesheet" href="styles.css">
</head>

你的程序应该是这样的

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>

如果您还没有 head 标签,您应该自己将其添加到文档的顶部。对于 href,将其更改为您的 css 文件的名称。

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html>
<HTML amp='amp' lang='en'>
<head>
<meta charset='utf-8'/>
<meta content='width=device-width, initial-scale=1, minimum-scale=1' name='viewport'/>
<!--[if ie]><meta content='IE=9; IE=8; IE=7; IE=EDGE; chrome=1' http-equiv='X-UA-Compatible'/> <![endif]-->
<meta content='blogger' name='generator'/>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<link href='https://justpaste.it/redirect/3qnyk/http://www.blogger.com/openid-server.g' rel='nofollow'/>
<link expr:href='' rel='nofollow'/>
<link expr:href='' rel='nofollow'/>
</head>

搜索此 ]]></b:skin> 并将您的 CSS 代码放在它前面而不使用 <style>

或者,如果您想使用样式标签,请将其放在 </b:skin>

之后