我正在编码一个网站,但是粗体和斜体不起作用

时间:2018-09-06 00:45:40

标签: google-chrome web bold italic

我正在尝试建立一个网站(Sponge),当我尝试进行大胆的工作时,我将无法正常工作! 看着它,看看它有多烦人!

我的代码: Hastebin

1 个答案:

答案 0 :(得分:0)

标题标签<h#>通常在默认情况下应用font-weight: bold。我不确定为什么您的所有文本都在标题中,但可能不应该在标题中。

将大量文本放入<p>标记中,并使用以下方式调整CSS来设置段落格式:

p { /*Style goes here*/ }

或者,您可以将一个类应用于您的段落以单独或成组调整其样式。如果您不确定如何操作,请查阅CSS教程。

这只是对代码的快速编辑。它不会是完美的,但希望它能引导您朝正确的方向前进。

<!DOCTYPE html>
<html>
<head>
<title>Sponge - Home</title>
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<style>
.hotbar {
    background-color: #808080;
    height: 20%;
    width: 100%;
    font-family: 'Quicksand', sans-serif;
}
.about {
    font-family: 'Roboto', sans-serif;
}
</style>
</head>
<body>
<div class="hotbar" height="7%" width="100%">
<img align="left" src="http://www.spongemc.cf/home/images/logo.png" alt="logo" height="7%" width="7%">
<h1 align="center"><a style="text-decoration: none;" href="http://www.spongemc.cf/home/">Home</a></h1>
</div>
<div class="about">
<br /> <!-- Assuming all those empty header tags for for spaces - you could also use padding-top in the div or margin-top for the first h2 tag -->
<h2>What are we?<h2>
<p>We are a Minecraft server dedicated to people having fun!</p>
<p>You can have fun and play prison at <i>Sponge.minehut.gg</i>,</p>
<p>or you can play farming and Skyblock at <i>spongemc.net</i></p>
<p>Or you could just sit there doing nothing (I don't recomend this),</p>
<p>so what are you doing, <b>JOIN NOW!</b></p>
</div>
</body>
</html>