String htmlStr = "<html><head><link rel='stylesheet' "
+ "href='styles/main.css' "
+ "type='text/css'/><title>The Learning Servlet</title></head>"
+ "<body><h1>GET method</h1>"
+ "<form id='form:index' action='index.html'>"
+ "<br/><input type='submit' value='Return to Home page'/></form>"
+ "</body></html>";
String htmlStr = """
<html>
<head>
<link rel='stylesheet'href='styles/main.css' type='text/css’/>
<title>The Learning Servlet</title>
</head>
<body>
<h1>GET method</h1>
<form id='form:index' action = 'index.html'>
<br/>
<input type= 'submit' value='Return to Home page' />
</form>
</body>
</html>""";
out.println("""
<html>
<head>
<title>Just Servlet Output</title>
<link rel='stylesheet' href='styles/main.css' type= 'text/css'/>
</head>
<body>
<h1>Thanks for joining our email list</h1>
<p>Here is the information that you entered:</p>
<label>Email:</label>
<span>%s</span>
</body>
</html>""".formatted(user.getEmailAddress()));