16 lines
296 B
HTML
16 lines
296 B
HTML
<!DOCTYPE html>
|
|
<html xmlns:th="http://www.thymeleaf.org">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<title>Spring Utils Demo</title>
|
|
<style type="text/css">
|
|
.param{
|
|
color:green;
|
|
font-style: italic;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
Parameter set by you: <p th:text="${parameter}" class="param"/>
|
|
</body>
|
|
</html> |