-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add background and index page to support GH pages
- Loading branch information
1 parent
ce4becc
commit 0dcfbec
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<!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="nightmode/night.js" defer></script> | ||
<link rel="stylesheet" href="nightmode/night.css"> | ||
<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> |