-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimportantDates.html
More file actions
26 lines (26 loc) · 822 Bytes
/
importantDates.html
File metadata and controls
26 lines (26 loc) · 822 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wichtige Datums</title>
<style>
body{
font-family:Arial, Helvetica, sans-serif;
background-color: black;
color:greenyellow;
}
h1{
color:red;
}
span{
color: orange;
}
</style>
</head>
<body>
<h1>Wichtige Datums</h1>
<p>18.03.2022 (vor <span><script>document.write(Math.round((new Date()-new Date("2022-03-18"))/1000/60/60/24))</script></span> Tagen; <span><script>document.write(Math.round((new Date()-new Date("2022-03-18"))/1000/60/60/24/365*100)/100)</script></span> Jahre); L3P3</p>
<p>01.08.2024 (vor <span><script>document.write(Math.round((new Date()-new Date("2024-08-1"))/1000/60/60/24))</script></span> Tagen); Lali</p>
</body>
</html>