Newer
Older
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" th:href="@{/css/templatingstyle.css}">
<style>
#homeTitle{
grid-area: pageTitle;
}
.submitLand{
grid-area: submitButton;
}
.gridContainer1{
display:grid;
grid-template-columns: 10% 70% 10% 10%;
grid-template-rows: auto;
grid-template-areas:
". pageTitle pageTitle ."
". . submitButton .";
}
</style>
</head>
<body>
<!--<header th:insert="~{../Templating.html::header}"></header>-->
<main>
<div class="gridContainer1">
<H1 id="homeTitle"> Smart Towns - Trails</H1>
<button class="submitLand"> Submit Landmark!</button>
</div>
</main>
<!--<footer th:insert="~{../Templating::footer}"></footer>-->
</body>
</html>