gpt4 book ai didi

html - 需要帮助使用 HTML 字体样式

转载 作者:行者123 更新时间:2023-11-28 16:49:17 24 4
gpt4 key购买 nike

我的代码需要一些帮助我如何使用这种字体样式 - “brandon grotesque”。我似乎无法更改字体样式,因为我不知道如何插入这种字体样式到我的代码中。下面是我的代码:

<style>
footer{
position:absolute;
bottom:0;
width:100%;
height:100px;
margin-top:-100px;
border-style: solid;
border-width: 0px;
background-color: lightgrey;

}

</style>

<body>



<footer>
<div>
<p style="font-size: 30px; text-align:center;">&copy; Copyright 2020, SCOPE
Industries Berhad</p>
</div>
</footer>

</body>
</html>

最佳答案

footer{ 
position:absolute;
bottom:0;
width:100%;
height:100px;
margin-top:-100px;
border-style: solid;
border-width: 0px;
background-color: lightgrey;
font-family: 'any_font_name_you_imported', sans-serif !important;
}

例子:

<html>
<head>
<link href="https://fonts.googleapis.com/css?
family=Noto+Sans+SC&display=swap" rel="stylesheet">
</head>
<body>
<footer>
<h1>Hii</h1>
</footer>
</body>
</html>

关于html - 需要帮助使用 HTML 字体样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59606323/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com