Java HTML htmlFormatText(String line1, String line2)

Here you can find the source of htmlFormatText(String line1, String line2)

Description

html Format Text

License

Open Source License

Declaration

public static String htmlFormatText(String line1, String line2) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static String htmlFormatText(String line1, String line2) {
        String text = "<html> " + "<body>" + "<label>" + line1 + "</label>" + "<br><label>" + line2 + "</label>"
                + "</body>" + "</html>";
        return text;
    }/*  w w w  . j a va2s  . com*/
}

Related

  1. HTMLFilter(String the_txt)
  2. htmlFilter(String value)
  3. htmlFilterToEmpty(String value)
  4. htmlFooter()
  5. htmlFormat(String input)
  6. htmlHashTag(final String tagName)
  7. htmlHeaderGen(String errorMsg)
  8. htmlify(String str)
  9. htmlItemName(int itemId)