-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (42 loc) · 1.8 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sample Page for Night Mode</title>
<!-- CSS and JS for night mode -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script type="text/javascript" src="https://thevickypedia.github.io/open-source/nightmode/night.js" defer></script>
<link rel="stylesheet" type="text/css" href="https://thevickypedia.github.io/open-source/nightmode/night.css">
<!-- Favicon.ico and Apple Touch Icon -->
<link rel="icon" href="https://thevickypedia.github.io/open-source/images/logo/thevickypedia.ico">
<link rel="apple-touch-icon" href="https://thevickypedia.github.io/open-source/images/logo/thevickypedia.png">
<!-- Can also be reached with raw.githubusercontent.com
<link rel="icon" href="https://raw.githubusercontent.com/thevickypedia/open-source/main/images/logo/thevickypedia.ico">
<link rel="apple-touch-icon" href="https://raw.githubusercontent.com/thevickypedia/open-source/main/images/logo/thevickypedia.png">
-->
<style>
body {
text-align: center;
}
</style>
</head>
<div class="toggler fa fa-moon-o"></div>
<body translate="no" class="night">
<h1>This is a sample webpage to serve CSS and JS for night-mode</h1>
<h1>Sample Text for h1</h1>
<h2>Sample Text for h2</h2>
<h3>Sample Text for h3</h3>
<h4>Sample Text for h4</h4>
<p>Sample Text for p</p>
<p>Sample Text for p</p>
<input placeholder="Sample text for input box" size="28px">
<br><br>
<button>Place Holder Button</button>
<br><br><br><br>
<h2>Dots</h2>
<hr style="border-bottom: dotted 10px;"/>
<hr style="border-top: dotted 10px;"/>
</body>
</html>