欢迎来访好站网,优质网站模板提供商!

您现在的位置: 首页>>建站教程>>安装问题

黑色背景代码?

来源:本站 发布时间:2023-10-25热度:1739 ℃
<!DOCTYPE html><html><head><style>body { background-color: black; color: whi···

<!DOCTYPE html>

<html>

<head>

<style>

body {

  background-color: black;

  color: white;

}


h1 {

  font-size: 24px;

  font-weight: bold;

}


p {

  font-size: 16px;

  line-height: 1.5;

}


.code {

  font-family: "Courier New", monospace;

}


</style>

</head>

<body>


<h1>黑色背景代码示例</h1>


<p class="code">

  function calculateSum(a, b) {

    return a + b;

  }

  

  const result = calculateSum(10, 20);

  console.log(result);

</p>


</body>

</html>