annotate index.html @ 15:7bfa77838f33

update
author Paper <mrpapersonic@gmail.com>
date Wed, 02 Jun 2021 19:34:27 -0400
parents 8f0b52a3cb69
children 423d47e447af
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
14
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
1 <!DOCTYPE html>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
2 <!-- i spent way too long making this look decent -->
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
3 <head>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
4 <title>Paper's website</title>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
5 <link rel="apple-touch-icon" sizes="180x180" href="icons/apple-touch-icon.png">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
6 <link rel="icon" type="image/png" sizes="32x32" href="icons/favicon-32x32.png">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
7 <link rel="icon" type="image/png" sizes="16x16" href="icons/favicon-16x16.png">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
8 <link rel="manifest" href="icons/site.webmanifest">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
9 <link rel="shortcut icon" href="icons/favicon.ico">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
10 <meta name="msapplication-TileColor" content="#da532c">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
11 <meta name="msapplication-config" content="icons/browserconfig.xml">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
12 <meta name="theme-color" content="#ffffff">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
13 <meta property="og:title" content="Paper's website">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
14 <meta property="og:type" content="website">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
15 <meta property="og:image" content="https://mrpapersonic.github.io/icons/android-chrome-512x512.png">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
16 <meta property="og:url" content="https://mrpapersonic.github.io">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
17 <meta property="og:description" content="hey!">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
18 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
15
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
19 <!-- rainbow css stolen from https://codepen.io/nohoid/pen/kIfto -->
14
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
20 <style>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
21 .wrapper {
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
22 height: 100%;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
23 width: 100%;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
24 left:0;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
25 right: 0;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
26 top: 0;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
27 bottom: 0;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
28 position: absolute;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
29 background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
30 background-size: 1800% 1800%;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
31 -webkit-animation: rainbow 18s ease infinite;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
32 -z-animation: rainbow 18s ease infinite;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
33 -o-animation: rainbow 18s ease infinite;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
34 animation: rainbow 18s ease infinite;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
35 z-index: -1;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
36 }
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
37 @-webkit-keyframes rainbow {
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
38 0%{background-position:0% 82%}
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
39 50%{background-position:100% 19%}
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
40 100%{background-position:0% 82%}
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
41 }
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
42 @-moz-keyframes rainbow {
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
43 0%{background-position:0% 82%}
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
44 50%{background-position:100% 19%}
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
45 100%{background-position:0% 82%}
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
46 }
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
47 @-o-keyframes rainbow {
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
48 0%{background-position:0% 82%}
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
49 50%{background-position:100% 19%}
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
50 100%{background-position:0% 82%}
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
51 }
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
52 @keyframes rainbow {
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
53 0%{background-position:0% 82%}
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
54 50%{background-position:100% 19%}
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
55 100%{background-position:0% 82%}
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
56 }
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
57 div.box {
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
58 padding: 10px;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
59 border: 2px solid black;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
60 margin: auto;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
61 width: 300px;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
62 height: 200px;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
63 background-color: white;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
64 color: black;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
65 text-shadow: none;
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
66 box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
67 }
15
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
68 div.luckystar {
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
69 position: fixed;
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
70 width: 350px;
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
71 padding: 3px;
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
72 border: 2px solid #d75016;
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
73 background-color: #FAFAD2;
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
74 text-shadow: none;
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
75 box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.5);
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
76 margin: 0 auto;
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
77 left: 10px;
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
78 bottom: 10px;
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
79 }
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
80 img.crash {
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
81 position: fixed;
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
82 bottom: 10px;
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
83 right: 10px;
14
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
84 }
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
85 </style>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
86 <link rel="stylesheet" href="style.css">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
87 </head>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
88 <body>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
89 <div class="wrapper"></div>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
90 <h1>Heys!</h1>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
91 <h2>welcome to MY AWESOME WEBSITE</h2>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
92 <div class="box">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
93 <h2>ABOUT ME!!!</h2>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
94 <p>most people know me from <a style="color:blue;" href="https://youtube.com/c/paperytpmv">ytpmv</a>, but i also make <a style="color:blue;" href="https://modarchive.org/index.php?request=view_profile&query=92603">modules</a></p>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
95 <p>member (owner?) of <a style="color:red;" href="https://1123.best">1123</a></p>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
96 </div>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
97 <p style="font-size:16px;"><a style="color:skyblue;" href="https://twitter.com/intent/user?user_id=858179488970100736">Twitter</a> <a style="color:gray" href="https://steamcommunity.com/id/nikolaicube/">Steam</a> <a style="color:red;" href="https://youtube.com/paperytpmv">YouTube</a></p>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
98 <p style="line-height:10px;">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
99 <a href="https://7-zip.org/"><img src="https://www.7-zip.org/logos/7zlogo01.png" width="88" height="31"></a>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
100 <a href="https://openmpt.org/"><img src="https://openmpt.org/img/openmpt-button-1.png" width="88" height="31"></a>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
101 <a href="https://www.foobar2000.org/"><img src="https://www.foobar2000.org/button.png" width="88" height="31"></a><br><br>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
102 <a href="https://modarchive.org/"><img src="img/modarchive.gif" width="88" height="31"></a>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
103 <img src="img/brow.gif" width="88" height="31">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
104 <a href="https://1123.best"><img src="https://1123.best/img/1123button.gif" width="88" height="31"></a><br><br>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
105 <img src="img/1080p.gif" width="88" height="31">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
106 <a href="https://cock.li"><img src="img/cockli.png" width="88" height="31"></a>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
107 <img src="img/h-free-anim.gif" width="88" height="31">
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
108 </p>
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
109 <p><a href="cool.html">cool shit</a></p>
15
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
110 <div class="luckystar">
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
111 <center style="font-family: Times New Roman, Times, serif; font-size: 1.20em; font-weight: bold; color: #d75116;">Certificate: Test results</center>
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
112 <center style="font-family: Times New Roman, Times, serif; font-size: 1.20em; font-weight: bold; color: #d75116;">What Lucky Star Character Are You?</center>
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
113 <p style="font-family: Times New Roman, Times, serif; font-size: 1em; color: #5c5c5c;">
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
114 <img src="https://www.allthetests.com/quiz31/picture_thumb/pic_1402476083_1001.jpg?1592828541" width="106" height="150" loading="lazy" align="left" alt="1001" title="Click to enlarge" style="margin:4pt; box-shadow: none;">
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
115 <b>For 40% you are: </b>Konata Izumi!<br>You are an OTAKU! You love to hang back and sometimes don't do homework... But you are a fun loving character who loves to prank and crack a joke once and a while! <br /><b> 60% of 3414 quiz participants had this profile!</b><br> &nbsp; <br>Take this quiz: <a href="https://www.allthetests.com/quiz31/quiz/1402476083/What-Lucky-Star-Character-Are-You">What Lucky Star Character Are You?</a></p>
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
116 </div>
Paper <mrpapersonic@gmail.com>
parents: 14
diff changeset
117 <img class="crash" src="crash.jpg" height="266" style="image-rendering: auto;">
14
8f0b52a3cb69 add module on front page
Paper <mrpapersonic@gmail.com>
parents: 13
diff changeset
118 </body>