Java HTML htmlWrap(StringBuilder s)

Here you can find the source of htmlWrap(StringBuilder s)

Description

html Wrap

License

Open Source License

Declaration

public static StringBuilder htmlWrap(StringBuilder s) 

Method Source Code

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

public class Main {
    public static StringBuilder htmlWrap(StringBuilder s) {
        s.insert(0, "<html>").append("</html>");
        return s;
    }/*from   w  w w . ja v  a  2s. c  o  m*/
}

Related

  1. htmlString(String str)
  2. htmlText(String text)
  3. HTMLtoRGB(String htmlColor)
  4. HTMLToTriplet(String color)
  5. htmlWrap(String text)