-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-us.html
57 lines (52 loc) · 1.73 KB
/
contact-us.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
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>
<head>
<!-- HTML Codes by Quackit.com -->
<title>
Fallings site.</title>
<meta name="viewport" content="width=device-width, initial-scale=6">
<meta name="keywords" content="falling, fallings page, __falling, falling2918, falling_enity">
<meta name="description" content="Fallings website.">
<style>
body {background-color:#ffffff;background-repeat:no-repeat;background-position:bottom left;background-attachment:fixed;}
h1{text-align:center;font-family:Arial, sans-serif;}
p {text-align:center;font-family:Georgia, serif;font-size:36px;font-style:normal;font-weight:normal;}
<style>
body {
padding: 25px;
background-color: black;
color: white;
font-size: 25px;
}
.dark-mode {
background-color: black;
color: white;
}
.light-mode {
background-color: white;
color: black;
}
</style>
</head>
<body>
</h1><h1> Contact us. </h1>
<p> <a href = "mailto: admin@falling.page">Contact us via email.</a> </p>
<h3 id="DarkModetext">Dark Mode is OFF</h3>
<button onclick="darkMode()">Darkmode</button>
<button onclick="lightMode()">LightMode</button>
<script>
function darkMode() {
let element = document.body;
let content = document.getElementById("DarkModetext");
element.className = "dark-mode";
content.innerText = "Dark Mode is ON";
}
function lightMode() {
let element = document.body;
let content = document.getElementById("DarkModetext");
element.className = "light-mode";
content.innerText = "Dark Mode is OFF";
}
</script>
</body>
</html>