-
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.
Test
apple-touch-icon
and favicon
in HTML
- Loading branch information
1 parent
3c6f10f
commit 6a17ee8
Showing
2 changed files
with
41 additions
and
29 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,35 +1,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"> | ||
<style> | ||
body { | ||
text-align:center; | ||
} | ||
</style> | ||
<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/favicon.ico"> | ||
<link rel="apple-touch-icon" href="https://thevickypedia.github.io/open-source/images/apple-touch-icon.jpg"> | ||
<!-- Can also be reached with raw.githubusercontent.com | ||
<link rel="icon" href="https://raw.githubusercontent.com/thevickypedia/open-source/main/images/favicon.ico"> | ||
<link rel="apple-touch-icon" href="https://raw.githubusercontent.com/thevickypedia/open-source/main/images/apple-touch-icon.jpg"> | ||
--> | ||
<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;" /> | ||
<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> |