Actually You can't change size of the font in text terminal. There is no such an information sent to terminal by Your application. (Only plain text is sent through the stream) This is possible and easy in graphic applications, made in Java and managed by Java API. Before You begin with these I advise You to start from some easy books or tutorials about Java essentials.
Essentials of the Java Programming Language, Part 1
By the way this is the code than can make Your task (excluding change of font size or font style)
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br =new BufferedReader(new InputStreamReader(System.in));
String name = br.readLine();
System.out.print("Name: "+name);
}
}
Only one thing possible to change using eclipse console is the font color of the output stream and error stream. (Right click on the console screen and preferences)