我想在我的网站上添加一个红色通知栏,以显示通知,例如计划维护。
我需要将哪些代码添加到我的网站才能使其正常运行。
感谢。
答案 0 :(得分:1)
只需在网站顶部添加带有一些样式的div。
<div id="notificationbar">
<p>Currently the site is down</p>
</div>
您可以使用css设置样式:
#notificationbar {
background-color: red;
}
#notificationbar p {
color: white;
}
你可以使用javascript或css做很多事情。如果您不理解上述内容,您应该查看如何编写HTML和CSS(尝试查看谷歌)或聘请那些人。