Skip to content

Commit

Permalink
Add background and index page to support GH pages
Browse files Browse the repository at this point in the history
  • Loading branch information
dormant-user committed Feb 18, 2024
1 parent ce4becc commit 0dcfbec
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
Binary file added images/bg.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
35 changes: 35 additions & 0 deletions index.html
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>

0 comments on commit 0dcfbec

Please sign in to comment.