HTML + CSS Styles/Text Formatting inside Div container -


i'm trying bold , color words (or make them italic, different size, etc.) within paragraph in index.html.

but usual formatting tags (html) not working.

i have stylesheet contains of styles , properties website, want change 3 words (for example) in paragraph. how do it?

index.html:

<div id="da-slider" class="da-slider">     <div class="da-slide">         <h2>this heading</h2>         <p>and here want make word bold , word in different color, 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> 

check fiddle: here

this little example.

i use <strong>word</strong> make bold, <b>word</b> fine to.

use <i></i> make words italic. used <span class="color">word</span> make blue.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -