HTML CSS examples for Bootstrap Class List:text-primary
text-primary - Blue text color
<!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Example of Bootstrap 3 Text Emphasis Classes</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> </head> <!--from w w w . j a va 2 s. co m--> <body> <div> <p class="text-muted">This is a test. This is a test. This is a test.</p> <p class="text-primary">This is a test. This is a test. This is a test.</p> <p class="text-success">This is a test. This is a test. This is a test.</p> <p class="text-info">This is a test. This is a test. This is a test.</p> <p class="text-warning">This is a test. This is a test. This is a test.</p> <p class="text-danger">This is a test. This is a test. This is a test.</p> </div> </body> </html>