diff --git a/1V1L.html b/1V1L.html index 1885f49..0b48fb2 100644 --- a/1V1L.html +++ b/1V1L.html @@ -1,2 +1,2 @@ 1v1 Lol - + diff --git a/2048.html b/2048.html index 16feedb..c3957aa 100644 --- a/2048.html +++ b/2048.html @@ -1,2 +1,2 @@ 2048 - + diff --git a/AU.html b/AU.html index eda9e6a..a53a57b 100644 --- a/AU.html +++ b/AU.html @@ -1,2 +1,2 @@ Among Us - + diff --git a/BAB.html b/BAB.html index 32766ae..cebdeda 100644 --- a/BAB.html +++ b/BAB.html @@ -1,2 +1,2 @@ Basket Bros - + diff --git a/BB.html b/BB.html index b666468..2162714 100644 --- a/BB.html +++ b/BB.html @@ -1,2 +1,2 @@ Baldi's Basics - + diff --git a/BR.html b/BR.html index 70805e4..ebba1fa 100644 --- a/BR.html +++ b/BR.html @@ -1,2 +1,2 @@ Backrooms - + diff --git a/BS.html b/BS.html index 092b22e..364ec95 100644 --- a/BS.html +++ b/BS.html @@ -1,2 +1,2 @@ Basketball Stars - + diff --git a/CB.html b/CB.html index aa02032..dfa2673 100644 --- a/CB.html +++ b/CB.html @@ -1,2 +1,2 @@ Coreball - + diff --git a/CC.html b/CC.html index 57b9e55..904b357 100644 --- a/CC.html +++ b/CC.html @@ -1,2 +1,2 @@ Cookie Clicker - + diff --git a/CM.html b/CM.html index e842c23..84e5541 100644 --- a/CM.html +++ b/CM.html @@ -1,2 +1,2 @@ CraftMine - + diff --git a/CNB.html b/CNB.html index 64daa27..82b73fc 100644 --- a/CNB.html +++ b/CNB.html @@ -1,2 +1,2 @@ Cannon Basketball - + diff --git a/CR.html b/CR.html index 56adb21..39fbfca 100644 --- a/CR.html +++ b/CR.html @@ -1,2 +1,2 @@ Cluster Rush - + diff --git a/Chat-main/README.md b/Chat-main/README.md deleted file mode 100644 index 90ac764..0000000 --- a/Chat-main/README.md +++ /dev/null @@ -1 +0,0 @@ -Inproved the UGPS chat! diff --git a/Chat-main/costume4 2.svg b/Chat-main/costume4 2.svg deleted file mode 100644 index 55a96d2..0000000 --- a/Chat-main/costume4 2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/Chat-main/index.html b/Chat-main/index.html deleted file mode 100644 index 6d77d21..0000000 --- a/Chat-main/index.html +++ /dev/null @@ -1,70 +0,0 @@ -UGPS| Chat - - - - - - - - - - -
-
-
-
-
-
- - -
- - - diff --git a/Chat-main/script.js b/Chat-main/script.js deleted file mode 100644 index b6561fa..0000000 --- a/Chat-main/script.js +++ /dev/null @@ -1,131 +0,0 @@ - -const CLIENT_ID = 'hWmT5ZuGe51IgiMD'; - -const drone = new ScaleDrone(CLIENT_ID, { - data: { // Will be sent out as clientData via events - name: getRandomName(), - color: getRandomColor(), - }, -}); - -let members = []; - -drone.on('open', error => { - if (error) { - return console.error(error); - } - console.log('Successfully connected to Scaledrone'); - - const room = drone.subscribe('observable-room'); - room.on('open', error => { - if (error) { - return console.error(error); - } - console.log('Successfully joined room'); - }); - - room.on('members', m => { - members = m; - updateMembersDOM(); - }); - - room.on('member_join', member => { - members.push(member); - updateMembersDOM(); - }); - - room.on('member_leave', ({id}) => { - const index = members.findIndex(member => member.id === id); - members.splice(index, 1); - updateMembersDOM(); - }); - - room.on('data', (text, member) => { - if (member) { - - addMessageToListDOM(text, member); - } else { - // Message is from server - } - }); -}); - -drone.on('close', event => { - console.log('Connection was closed', event); -}); - -drone.on('error', error => { - console.error(error); -}); - -function getRandomName() { - const adjs = ["autumn", "hidden", "bitter", "misty", "silent", "empty", "dry", "dark", "summer", "icy", "delicate", "quiet", "white", "cool", "spring", "winter", "patient", "twilight", "dawn", "crimson", "wispy", "weathered", "blue", "billowing", "broken", "cold", "damp", "falling", "frosty", "green", "long", "late", "lingering", "bold", "little", "morning", "muddy", "old", "red", "rough", "still", "small", "sparkling", "throbbing", "shy", "wandering", "withered", "wild", "black", "young", "holy", "solitary", "fragrant", "aged", "snowy", "proud", "floral", "restless", "divine", "polished", "ancient", "purple", "lively", "nameless"]; - const nouns = ["waterfall", "river", "breeze", "moon", "rain", "wind", "sea", "morning", "snow", "lake", "sunset", "pine", "shadow", "leaf", "dawn", "glitter", "forest", "hill", "cloud", "meadow", "sun", "glade", "bird", "brook", "butterfly", "bush", "dew", "dust", "field", "fire", "flower", "firefly", "feather", "grass", "haze", "mountain", "night", "pond", "darkness", "snowflake", "silence", "sound", "sky", "shape", "surf", "thunder", "violet", "water", "wildflower", "wave", "water", "resonance", "sun", "wood", "dream", "cherry", "tree", "fog", "frost", "voice", "paper", "frog", "smoke", "star"]; - return ( - adjs[Math.floor(Math.random() * adjs.length)] + - "_" + - nouns[Math.floor(Math.random() * nouns.length)] - ); -} - -function getRandomColor() { - return '#' + Math.floor(Math.random() * 0xFFFFFF).toString(16); -} - -//------------- DOM STUFF - -const DOM = { - membersCount: document.querySelector('.members-count'), - membersList: document.querySelector('.members-list'), - messages: document.querySelector('.messages'), - input: document.querySelector('.message-form__input'), - form: document.querySelector('.message-form'), -}; - -DOM.form.addEventListener('submit', sendMessage); - -function sendMessage() { - const value = DOM.input.value; - if (value === '') { - return; - } - DOM.input.value = ''; - drone.publish({ - room: 'observable-room', - message: value, - }); -} - -function createMemberElement(member) { - const { name, color } = member.clientData; - const el = document.createElement('div'); - el.appendChild(document.createTextNode(name)); - el.className = 'member'; - el.style.color = color; - return el; -} - -function updateMembersDOM() { - DOM.membersCount.innerText = `${members.length} users in room:`; - DOM.membersList.innerHTML = ''; - members.forEach(member => - DOM.membersList.appendChild(createMemberElement(member)) - ); -} - -function createMessageElement(text, member) { - const el = document.createElement('div'); - el.appendChild(createMemberElement(member)); - el.appendChild(document.createTextNode(text)); - el.className = 'message'; - return el; -} - -function addMessageToListDOM(text, member) { - const el = DOM.messages; - const wasTop = el.scrollTop === el.scrollHeight - el.clientHeight; - el.appendChild(createMessageElement(text, member)); - if (wasTop) { - el.scrollTop = el.scrollHeight - el.clientHeight; - } -} diff --git a/DM.html b/DM.html index 72107a8..86bdea4 100644 --- a/DM.html +++ b/DM.html @@ -1,2 +1,2 @@ Doge Miner - + diff --git a/DT.html b/DT.html index e3dc657..6f86233 100644 --- a/DT.html +++ b/DT.html @@ -1,2 +1,2 @@ Dante - + diff --git a/DTH.html b/DTH.html index 5e21406..48d5819 100644 --- a/DTH.html +++ b/DTH.html @@ -1,2 +1,2 @@ Draw The Hill - + diff --git a/FB.html b/FB.html index 7a0ea15..66295f7 100644 --- a/FB.html +++ b/FB.html @@ -1,2 +1,2 @@ Factory Balls - + diff --git a/FN.html b/FN.html index db0bd17..81b1991 100644 --- a/FN.html +++ b/FN.html @@ -1,2 +1,2 @@ Friuit Ninja - + diff --git a/FNAW.html b/FNAW.html index 646e6f9..4578648 100644 --- a/FNAW.html +++ b/FNAW.html @@ -1,2 +1,2 @@ FNAW - + diff --git a/GD.html b/GD.html index 76acf46..59dce7d 100644 --- a/GD.html +++ b/GD.html @@ -1,2 +1,2 @@ Geometry Dash - + diff --git a/IB.html b/IB.html index 87e37a2..0f1a7e6 100644 --- a/IB.html +++ b/IB.html @@ -1,2 +1,2 @@ Idle Breakout - + diff --git a/IMG_0111.png b/IMG_0111.png new file mode 100644 index 0000000..e6a297a Binary files /dev/null and b/IMG_0111.png differ diff --git a/IMG_0558.png b/IMG_0558.png new file mode 100644 index 0000000..d7a9445 Binary files /dev/null and b/IMG_0558.png differ diff --git a/JF.html b/JF.html index 193f416..344e519 100644 --- a/JF.html +++ b/JF.html @@ -1,2 +1,2 @@ Just Fall - + diff --git a/MC.html b/MC.html index 5b037e3..e84c5f5 100644 --- a/MC.html +++ b/MC.html @@ -1,2 +1,2 @@ MineCraft - + diff --git a/MD.png b/MD.png new file mode 100644 index 0000000..d438587 Binary files /dev/null and b/MD.png differ diff --git a/MX3M.html b/MX3M.html index 799fd33..7d4c577 100644 --- a/MX3M.html +++ b/MX3M.html @@ -1,2 +1,2 @@ MotoX3M - + diff --git a/OVO.html b/OVO.html index 981537a..ea7f89e 100644 --- a/OVO.html +++ b/OVO.html @@ -1,2 +1,2 @@ OvO - + diff --git a/PI.html b/PI.html index a274a0d..3a65d21 100644 --- a/PI.html +++ b/PI.html @@ -1,2 +1,2 @@ Paper IO - + diff --git a/RB.html b/RB.html index 53c806b..d877262 100644 --- a/RB.html +++ b/RB.html @@ -1,2 +1,2 @@ Retro Bowl - + diff --git a/README.md b/README.md index ea32167..d732ea8 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@

Pure Pro

+[![flask-proxy](https://github-readme-stats.vercel.app/api/pin/?username=PurePro4561&repo=purepro4561.github.io&theme=dark)](https://github.com/purepro4561/purepro4561.github.io)
+ License

diff --git a/SB.html b/SB.html index 795fd3b..bf5ba31 100644 --- a/SB.html +++ b/SB.html @@ -1,2 +1,2 @@ SoundBoard - + diff --git a/SCR.html b/SCR.html index c8680a1..62fe17f 100644 --- a/SCR.html +++ b/SCR.html @@ -1,2 +1,2 @@ Soccer Random - + diff --git a/SL.html b/SL.html index 1e71e20..10e4521 100644 --- a/SL.html +++ b/SL.html @@ -1,2 +1,2 @@ Slope - + diff --git a/SM.html b/SM.html index 49cff5e..021041a 100644 --- a/SM.html +++ b/SM.html @@ -1,2 +1,2 @@ Stick Merge - + diff --git a/SMH b/SMH index 6b276e8..63268d1 100644 --- a/SMH +++ b/SMH @@ -1,2 +1,2 @@ Stickman Hook - + diff --git a/SR.html b/SR.html index fca2881..88c5dc5 100644 --- a/SR.html +++ b/SR.html @@ -1,2 +1,2 @@ Swerve - + diff --git a/SS.html b/SS.html index bddcede..f773dcc 100644 --- a/SS.html +++ b/SS.html @@ -1,2 +1,2 @@ Euro Cup - + diff --git a/ST.html b/ST.html index 7c87720..ff3c98a 100644 --- a/ST.html +++ b/ST.html @@ -1,2 +1,2 @@ Stack - + diff --git a/SWS.html b/SWS.html index 8958873..5729eeb 100644 --- a/SWS.html +++ b/SWS.html @@ -1,2 +1,2 @@ Subway Surfers - + diff --git a/TF.html b/TF.html index 6d948f1..8a3ff3d 100644 --- a/TF.html +++ b/TF.html @@ -1,2 +1,2 @@ Tiny Fishing - + diff --git a/TS.html b/TS.html index 09d0fae..6fed23f 100644 --- a/TS.html +++ b/TS.html @@ -1,2 +1,2 @@ Tanuki Sunset - + diff --git a/Your paragraph text (1).png b/Your paragraph text (1).png new file mode 100644 index 0000000..33a38d3 Binary files /dev/null and b/Your paragraph text (1).png differ diff --git a/Your paragraph text.png b/Your paragraph text.png new file mode 100644 index 0000000..7f063fb Binary files /dev/null and b/Your paragraph text.png differ diff --git a/blog.html b/blog.html new file mode 100644 index 0000000..44ef187 --- /dev/null +++ b/blog.html @@ -0,0 +1,68 @@ +Blog +

+ +

Shoutouts!

+ + +

spring_meadow

+

divine_meadow

+

long_river

+ +
+ + + + diff --git a/games.html b/games.html index b1522b5..b7fecc3 100644 --- a/games.html +++ b/games.html @@ -13,14 +13,21 @@ PurePro4561 | Games +
+

ROBLOX IS NOW WORKING!

+
- Reqeust A Game + Request A Game +
+
+
@@ -29,94 +36,97 @@ Logo - - Logo + + Logo - + Logo Logo - + Logo Logo - + Logo - + + Logo + + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo Logo - + Logo - + Logo - + Logo - + Logo @@ -140,7 +150,7 @@ Logo - + Logo @@ -158,43 +168,43 @@ Logo - + Logo - + Logo - + Logo Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo - + Logo @@ -203,10 +213,10 @@ Logo - + Logo - + Logo @@ -215,10 +225,10 @@ Logo - + Logo - + Logo @@ -236,8 +246,13 @@ Logo + + Logo + + + Logo +
Privacy Policy - diff --git a/googled2965805b9cbf8ff.html b/googled2965805b9cbf8ff.html new file mode 100644 index 0000000..23d9bc8 --- /dev/null +++ b/googled2965805b9cbf8ff.html @@ -0,0 +1 @@ +google-site-verification: googled2965805b9cbf8ff.html \ No newline at end of file diff --git a/gpt.html b/gpt.html new file mode 100644 index 0000000..0d18fd2 --- /dev/null +++ b/gpt.html @@ -0,0 +1,2 @@ +ForeFrontGPT + diff --git a/gs.css b/gs.css index deffd7b..adb9d99 100644 --- a/gs.css +++ b/gs.css @@ -16,10 +16,12 @@ h1 { } img { - border-style: solid; - border-width: 0px; + border: double 2px transparent; border-radius: 25px; - border-image: conic-gradient(lime, aqua, blue, magenta, yellow, lime) 1; + background-image: linear-gradient(black, black), + linear-gradient(to right, aqua, lime); + background-origin: border-box; + background-clip: content-box, border-box; } a { @@ -70,5 +72,9 @@ img:hover { } } +a { + text-decoration: none; +} + html { height: 100%; background: #000; display: flex; } body { margin: auto; } diff --git a/index.html b/index.html index 3ab208a..74ecede 100644 --- a/index.html +++ b/index.html @@ -14,12 +14,15 @@ +
PurePro4561 | All Your Favorite Games In One Place
Home - Games - Fandom + Games + YouTube + Contact Me Request A Game Privacy Policy
@@ -31,15 +34,24 @@
Logo

PurePro4561

-

NEW LOGO!

+

All Your Favorite Games In One Place

+
+ Play! +
+ Shoutouts! +
+
+ Websites
- Play!
- Websites + More Stuff
- More Stuff + I'm Live!
+
+ Contact Me +
diff --git a/monkeyMart.html b/monkeyMart.html new file mode 100644 index 0000000..97988b8 --- /dev/null +++ b/monkeyMart.html @@ -0,0 +1,13171 @@ + + + + + + + Monkey Mart + + + + +
+
+ +
+
+
+ + +
+ + + + + + + + + + + + + + + diff --git a/nowgg.html b/nowgg.html index 0f91505..47e4c68 100644 --- a/nowgg.html +++ b/nowgg.html @@ -1,2 +1,2 @@ Now.gg - + diff --git a/roblox.html b/roblox.html index 20d7003..a37d6b8 100644 --- a/roblox.html +++ b/roblox.html @@ -1,2 +1,3 @@ Roblox - + + diff --git a/roblox2.html b/roblox2.html index 2df3314..af0ba3c 100644 --- a/roblox2.html +++ b/roblox2.html @@ -1,2 +1,2 @@ Roblox - + diff --git a/roblox3.html b/roblox3.html index 8d910b5..af0ba3c 100644 --- a/roblox3.html +++ b/roblox3.html @@ -1,2 +1,2 @@ Roblox - + diff --git a/roblox4.html b/roblox4.html index 493968b..af0ba3c 100644 --- a/roblox4.html +++ b/roblox4.html @@ -1,2 +1,2 @@ Roblox - + diff --git a/style.css b/style.css index 74163dc..3b81058 100644 --- a/style.css +++ b/style.css @@ -19,6 +19,7 @@ h1 { background: rgb(0,255,48); background: linear-gradient(90deg, rgba(0,255,48,1) 0%, rgba(0,242,255,1) 100%); overflow: hidden; + border-radius: 50px; } /* Style the links inside the navigation bar */ @@ -30,13 +31,13 @@ background: linear-gradient(90deg, rgba(0,255,48,1) 0%, rgba(0,242,255,1) 100%); text-decoration: none; font-family: monospace; font-size: 17px; + border-radius: 50px; } /* Change the color of links on hover */ .topnav a:hover { - background-image: linear-gradient(90deg, rgb(0, 234, 255) 0%, rgb(41, 9, 250) 100%); + background-image: linear-gradient(90deg, #00ab25, #00cfd6); color: rgb(255, 255, 255); - font-size: 20px; } .topnav a { @@ -46,7 +47,9 @@ background: linear-gradient(90deg, rgba(0,255,48,1) 0%, rgba(0,242,255,1) 100%); /* Add a color to the active/current link */ .topnav a.active { background-color: linear-gradient(90deg, rgba(0,255,48,1) 0%, rgba(0,242,255,1) 100%); - color: white; + background: white; + color: black; + border-radius: 50px; } @font-face { @@ -83,11 +86,10 @@ background: linear-gradient(90deg, rgba(0,255,48,1) 0%, rgba(0,242,255,1) 100%); } .button:hover { - color: white; - background-image: linear-gradient(90deg, rgb(0, 234, 255) 0%, rgb(34, 0, 255) 100%); + color: white; + background-image: linear-gradient(90deg, #00ab25, #00cfd6); font-size: 28px; -} - + .container { display: flex; justify-content: center;