udemy-go-web-1/templates/home.page.tmpl

25 lines
694 B
Cheetah
Raw Normal View History

2024-06-26 16:10:56 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2024-06-26 19:56:58 +00:00
<title>Home page</title>
2024-06-26 16:10:56 +00:00
<link href="css/style.css" rel="stylesheet">
2024-06-26 19:56:58 +00:00
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
2024-06-26 16:10:56 +00:00
</head>
<body>
2024-06-26 19:56:58 +00:00
<div class="container">
<div class="row">
<div class="col">
<h1>This is the home page</h1>
<p>This is the content</p>
</div>
</div>
</div>
2024-06-26 16:10:56 +00:00
</body>
</html>