-
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.
- Loading branch information
1 parent
6b1d9e4
commit 22c10d6
Showing
14 changed files
with
11,957 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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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,68 @@ | ||
<!DOCTYPE html> | ||
<head> | ||
<link rel="preconnect" href="https://fonts.googleapis.com"> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | ||
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet"> | ||
|
||
<style> | ||
body { | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
</style> | ||
|
||
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> | ||
<link rel="manifest" href="/site.webmanifest"> | ||
</head> | ||
|
||
<body> | ||
<html> | ||
<title>Quick Quotes App</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<h1>Hello, here is your random quote:</h1> | ||
|
||
<script type='text/javascript'> | ||
function random_content(){ | ||
var tip=new Array() | ||
|
||
tip[0]="Don't give up, you can do this!" | ||
tip[1]="Mistakes make you stronger and smarter, don't worry about making them!" | ||
tip[2]="Two things are infinite: the universe and human stupidity; and I'm not sure about the universe. - Albert Einstein" | ||
tip[3]="Be yourself; everyone else is already taken. - Oscar Wilde" | ||
tip[4]="Keep on trying, keep on pushing, keep on moving, keep on persevering. - Me" | ||
tip[5]="You know you're in love when you can't fall asleep because reality is finally better than your dreams. - Dr. Seuss" | ||
tip[6]="Be the change that you wish to see in the world. - Mahatma Gandhi" | ||
tip[7]="A friend is someone who knows all about you and still loves you. - Elbert Hubbard" | ||
tip[8]="Darkness cannot drive out darkness: only light can do that. Hate cannot drive out hate: only love can do that. - Martin Luther King Jr" | ||
tip[9]="There are only two ways to live your life. One is as though nothing is a miracle. The other is as though everything is a miracle. - Albert Einstein" | ||
tip[10]="I have not failed. I've just found 10,000 ways that won't work. - Thomas A. Edison" | ||
tip[11]="I am enough of an artist to draw freely upon my imagination. Imagination is more important than knowledge. Knowledge is limited. Imagination encircles the world. - Albert Einstein" | ||
tip[12]="To the well-organized mind, death is but the next great adventure. - Albus Dumbledore, Harry Potter and the Philosipher's Stone" | ||
tip[13]="You may say I'm a dreamer, but I'm not the only one. I hope someday you'll join us. And the world will live as one. - John Lennon" | ||
tip[14]="It's no use going back to yesterday, because I was a different person then. - Lewis Carroll" | ||
tip[15]="A person's a person, no matter how small. - Dr. Seuss" | ||
tip[16]="Nothing is impossible, the word itself says 'I'm possible'! - Audrey Hepburn" | ||
tip[17]="Peace begins with a smile.. - Mother Teresa" | ||
tip[18]="Happiness is not something ready made. It comes from your own actions. - Dalai Lama XIV" | ||
tip[19]="Whatever you are, be a good one. - Abraham Lincoln" | ||
tip[20]="If you're reading this, congratulations, you're alive. If that's not something to smile about, then I don't know what is. - Chad Sugg" | ||
|
||
var rt=Math.floor(Math.random()*tip.length) | ||
|
||
document.write(tip[rt]) | ||
|
||
|
||
|
||
} | ||
random_content() | ||
</script> | ||
<footer> | ||
<h4>Made with ❤ by <a href="https://privateme.bio.link">PrivateMe.</a></h4> | ||
</footer> | ||
|
||
|
||
</html> | ||
|
||
|
||
</body> |
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 @@ | ||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"} |
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.