File size: 691 Bytes
70f8d8a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <link rel="stylesheet" href="/static/styles.css" />
    <title>Template with Background Image</title>
  </head>
  <body>
    <div class="container">
      <img
        src="/static/phocao_run_2024.jpg"
        alt="background"
        class="background-image"
      />
      <div class="text" style="left: {{ name_x }}px; top: {{ name_y }}px;">
        <h2>{{ name }}</h2>
      </div>
      <div class="text" style="left: {{ age_x }}px; top: {{ age_y }}px;">
        <h2>{{ age }} years old</h2>
      </div>
    </div>
  </body>
</html>