CodingBat makeTags Solution

public String makeTags(String tag, String word) {
  return "<"+tag+">"+word+"</"+tag+">";
}

Comments