phocao-2024-run-cert / template.html
hieunm
first working demo
70f8d8a
raw
history blame contribute delete
691 Bytes
<!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>