Div容器内的HTML + CSS样式/文本格式

The*_*gue 1 html css stylesheet

我试图在我的Index.HTML中的一个段落中加粗并为某些单词(或使它们显示为斜体,不同大小等)着色.

但通常的格式标签(HTML)不起作用.

我有一个StyleSheet,其中包含我网站的所有样式和属性,但我只想在段落中更改三个单词(例如).我该怎么做?

index.html的:

<div id="da-slider" class="da-slider">
    <div class="da-slide">
        <h2>This is the Heading</h2>
        <p>And HERE is where I want to make this word BOLD and this WORD in a different color, for example</p>
        <a href="#" class="da-link">Read more</a>
    <div class="da-img"><img src="img/pp-slider/imac.png" alt="image01" /></div>
</div>
Run Code Online (Sandbox Code Playgroud)

Die*_*EEn 6

检查这个小提琴:这里

这是一个小例子.

我用<strong>Word</strong>它来大胆,但<b>Word</b>会做得很好.

<i></i>做的话斜体.我也曾经<span class="color">Word</span>把它变成蓝色.