Java HTML Create bold(String text)

Here you can find the source of bold(String text)

Description

bold

License

Open Source License

Declaration

public static String bold(String text) 

Method Source Code

//package com.java2s;

public class Main {
    public static String bold(String text) {
        return new StringBuffer().append("<b>").append(text).append("</b>").toString();
    }/*from  w w  w . j a  v a 2s.  com*/
}

Related

  1. bold()
  2. bold(String s)
  3. bold(String str)
  4. bold(String text)
  5. boldenRefOrType(String label)
  6. boldHTML(String input)
  7. boldIf(String str, boolean bold)
  8. italics(String inner)