16 lines
367 B
HTML
16 lines
367 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Greeting</title>
|
|
</head>
|
|
<body>
|
|
<h2>Hello, {{ name }}!</h2>
|
|
<p>Your phone number is: {{ phone }}</p>
|
|
<p>Your address is: {{ address }}</p>
|
|
<p>Comments:</p>
|
|
<p>{{ comments }}</p>
|
|
</body>
|
|
</html>
|