-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
executable file
·35 lines (33 loc) · 1.01 KB
/
about.html
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
<html>
<head>
<title>About</title>
<style>
.container{
width: 80%;
margin: auto;
text-align: center;
margin-top: 20px;
line-height: 1.5em;
font-size: 16px;
font-family: 'Nunito', sans-serif;
}
.container img{
width: 100%;
}
#copyright{
color: rgb(61, 60, 60);
}
</style>
</head>
<body>
<div class="container">
<img src="static/summerplace.jpg"/>
<p>Fertiliser and Lime Recommendations by Summerplace Natural Resources PL</p>
<p id="copyright"></p>
</div>
<script>
let copyRightText = document.querySelector('#copyright');
copyRightText.innerHTML = `All rights reserved © ${new Date().getFullYear()}`;
</script>
</body>
</html>