NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

<!DOCTYPE html>
<html>
<head>
<title>Google</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<style>
#yuppo{
font-family: Tahoma, Geneva, sans-serif;
color: #fff;
font-size: 25px;
height: 60px;
}
canvas {
border:4px solid #fff;
background-color: #fff;

}
a {
text-decoration: none;
}
* {
box-sizing: border-box;
}

/* Style the search field */
form.example input[type=text] {
padding: 10px;
font-size: 17px;
border: 1px solid grey;
float: left;
width: 80%;
background: #f1f1f1;
}

/* Style the submit button */
form.example button {
float: left;
width: 20%;
padding: 10px;
background: #2196F3;
color: white;
font-size: 17px;
border: 1px solid grey;
border-left: none; /* Prevent double borders */
cursor: pointer;
}

form.example button:hover {
background: #0b7dda;
}

/* Clear floats */
form.example::after {
content: "";
clear: both;
display: table;
}
body {
background: linear-gradient(-45deg, #fff, #FBBC05, #c0f030, #c0f030);
background-size: 410% 410%;
animation: gradient 5s ease infinite;
}

@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}

#rcorners1 {
border-radius: 25px;
background: #fff;
width: 300px;
height: 1px;
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10+ and Edge */
user-select: none; /* Standard syntax */

}
#rcorners2 {
border-radius: 25px;
background: #000;
width: 300px;
height: 1px;
-webkit-user-select: none; /* Safari */
-ms-user-select: none; /* IE 10+ and Edge */
user-select: none; /* Standard syntax */
background: linear-gradient(-45deg, #55ACEE, #292F33, #66757F, #CCD6DD);
background-size: 410% 410%;
animation: gradient 5s ease infinite;
}

@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}

}
/* Clear floats </style>
<style type="text/css"> */
.st0{fill:#FCFDFC;}
.st1{fill:#40AC4B;}
</style>
</head>
<body onload="startGame()" align="center">

<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/js/all.min.js" integrity="sha256-qM7QTJSlvtPSxVRjVWNM2OfTAz/3k5ovHOKmKXuYMO4=" crossorigin="anonymous">
</script><script>
var myGamePiece;
var myObstacles = [];
var myScore;

function startGame() {
myGamePiece = new component(30, 30, "#000080", 10, 120);
myGamePiece.gravity = 0.09;
myScore = new component("30px", "Trebuchet MS", "black", 280, 40, "text");
myGameArea.start();
}

var myGameArea = {
canvas : document.createElement("canvas"),
start : function() {
this.canvas.width = 500;
this.canvas.height = 200;
this.context = this.canvas.getContext("2d");
document.body.insertBefore(this.canvas, document.body.childNodes[0]);
this.frameNo = 0;
this.interval = setInterval(updateGameArea, 20);
},
clear : function() {
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
}
}

function component(width, height, color, x, y, type) {
this.type = type;
this.score = 0;
this.width = width;
this.height = height;
this.speedX = 0;
this.speedY = 0;
this.x = x;
this.y = y;
this.gravity = 0;
this.gravitySpeed = 0;
this.update = function() {
ctx = myGameArea.context;
if (this.type == "text") {
ctx.font = this.width + " " + this.height;
ctx.fillStyle = color;
ctx.fillText(this.text, this.x, this.y);
} else {
ctx.fillStyle = color;
ctx.fillRect(this.x, this.y, this.width, this.height);
}
}
this.newPos = function() {
this.gravitySpeed += this.gravity;
this.x += this.speedX;
this.y += this.speedY + this.gravitySpeed;
this.hitBottom();
}
this.hitBottom = function() {
var rockbottom = myGameArea.canvas.height - this.height;
if (this.y > rockbottom) {
this.y = rockbottom;
this.gravitySpeed = 0;
}
}
this.crashWith = function(otherobj) {
var myleft = this.x;
var myright = this.x + (this.width);
var mytop = this.y;
var mybottom = this.y + (this.height);
var otherleft = otherobj.x;
var otherright = otherobj.x + (otherobj.width);
var othertop = otherobj.y;
var otherbottom = otherobj.y + (otherobj.height);
var crash = true;
if ((mybottom < othertop) || (mytop > otherbottom) || (myright < otherleft) || (myleft > otherright)) {
crash = false;
}
return crash;
}
}

function updateGameArea() {
var x, height, gap, minHeight, maxHeight, minGap, maxGap;
for (i = 0; i < myObstacles.length; i += 1) {
if (myGamePiece.crashWith(myObstacles[i])) {
return;
}
}
myGameArea.clear();
myGameArea.frameNo += 1;
if (myGameArea.frameNo == 1 || everyinterval(150)) {
x = myGameArea.canvas.width;
minHeight = 20;
maxHeight = 100;
height = Math.floor(Math.random()*(maxHeight-minHeight+1)+minHeight);
minGap = 50;
maxGap = 200;
gap = Math.floor(Math.random()*(maxGap-minGap+1)+minGap);
myObstacles.push(new component(10, height, "orange", x, 0));
myObstacles.push(new component(10, x - height - gap, "orange", x, height + gap));
}
for (i = 0; i < myObstacles.length; i += 1) {
myObstacles[i].x += -1;
myObstacles[i].update();
}
myScore.text="SCORE: " + myGameArea.frameNo;
myScore.update();
myGamePiece.newPos();
myGamePiece.update();
}

function everyinterval(n) {
if ((myGameArea.frameNo / n) % 1 == 0) {return true;}
return false;
}

function accelerate(n) {
myGamePiece.gravity = n;
}
function startGame() {
myGamePiece = new component(30, 30, "#4169e1", 10, 120);
myGamePiece.gravity = 0.09;
myScore = new component("30px", "Consolas", "black", 280, 40, "text");
myGameArea.start();
}

var myGameArea = {
canvas : document.createElement("canvas"),
start : function() {
this.canvas.width = 500;
this.canvas.height = 200;
this.context = this.canvas.getContext("2d");
document.body.insertBefore(this.canvas, document.body.childNodes[0]);
this.frameNo = 0;
this.interval = setInterval(updateGameArea, 20);
},
clear : function() {
this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);
}
}

function component(width, height, color, x, y, type) {
this.type = type;
this.score = 0;
this.width = width;
this.height = height;
this.speedX = 0;
this.speedY = 0;
this.x = x;
this.y = y;
this.gravity = 0;
this.gravitySpeed = 0;
this.update = function() {
ctx = myGameArea.context;
if (this.type == "text") {
ctx.font = this.width + " " + this.height;
ctx.fillStyle = color;
ctx.fillText(this.text, this.x, this.y);
} else {
ctx.fillStyle = color;
ctx.fillRect(this.x, this.y, this.width, this.height);
}
}
this.newPos = function() {
this.gravitySpeed += this.gravity;
this.x += this.speedX;
this.y += this.speedY + this.gravitySpeed;
this.hitBottom();
}
this.hitBottom = function() {
var rockbottom = myGameArea.canvas.height - this.height;
if (this.y > rockbottom) {
this.y = rockbottom;
this.gravitySpeed = 0;
}
}
this.crashWith = function(otherobj) {
var myleft = this.x;
var myright = this.x + (this.width);
var mytop = this.y;
var mybottom = this.y + (this.height);
var otherleft = otherobj.x;
var otherright = otherobj.x + (otherobj.width);
var othertop = otherobj.y;
var otherbottom = otherobj.y + (otherobj.height);
var crash = true;
if ((mybottom < othertop) || (mytop > otherbottom) || (myright < otherleft) || (myleft > otherright)) {
crash = false;
}
return crash;
}
}

function updateGameArea() {
var x, height, gap, minHeight, maxHeight, minGap, maxGap;
for (i = 0; i < myObstacles.length; i += 1) {
if (myGamePiece.crashWith(myObstacles[i])) {
return;
}
}
myGameArea.clear();
myGameArea.frameNo += 1;
if (myGameArea.frameNo == 1 || everyinterval(150)) {
x = myGameArea.canvas.width;
minHeight = 20;
maxHeight = 100;
height = Math.floor(Math.random()*(maxHeight-minHeight+1)+minHeight);
minGap = 50;
maxGap = 200;
gap = Math.floor(Math.random()*(maxGap-minGap+1)+minGap);
myObstacles.push(new component(10, height, "orange", x, 0));
myObstacles.push(new component(10, x - height - gap, "orange", x, height + gap));
}
for (i = 0; i < myObstacles.length; i += 1) {
myObstacles[i].x += -1;
myObstacles[i].update();
}
myScore.text="SKOR: " + myGameArea.frameNo;
myScore.update();
myGamePiece.newPos();
myGamePiece.update();
}

function everyinterval(n) {
if ((myGameArea.frameNo / n) % 1 == 0) {return true;}
return false;
}

function accelerate(n) {
myGamePiece.gravity = n;
}
</script>

<br><p>
<button onmousedown="accelerate(-0.2)" onmouseup="accelerate(0.05)"><p>Hopla</p></button>
&nbsp&nbsp&nbsp
<button onClick="history.go(0)"><p>Reset</p></button>


</p>
<center>
<h1><h1><p id="bugun" >
<table id="rcorners1" >
<tr>
<td><center>
<font color="blue" face="Trebuchet MS", Helvetica, sans-serif size="90">G</font>
<font color="red" face="Trebuchet MS", Helvetica, sans-serif size="90">o</font>
<font color="orange" face="Trebuchet MS", Helvetica, sans-serif size="90">o</font>
<font color="blue" face="Trebuchet MS", Helvetica, sans-serif size="90">g</font>
<font color="green" face="Trebuchet MS", Helvetica, sans-serif size="90">l</font>
<font color="red" face="Trebuchet MS", Helvetica, sans-serif size="90">e</font>
</center></td>
</tr>
</table ></center>
</p></h1></h1>

<form class="example" action="https://google.com/search" style="margin:auto;max-width:600px" method="get">
<input type="hidden" name="sitesearch" />
<input type="text" name="q" placeholder="Google'de Ara"/>
<p>
<button type="submit">Ara</i></button>
</p>
<br><br><br>
<br><br><center>
<table id="rcorners2">
<tr>
<td id="yuppo"><center>
Rumeysa Yıldırım
</td>
</tr>
</table>

<table border="0" >
<tr>
<td >
<a href="https://web.whatsapp.com/" target="_blank">whatsapp</a>
<style type="text/css">
.st0{fill:#FCFDFC;}
.st1{fill:#40AC4B;}
</style>
<g>
<path class="st0" d="M27.57,131.72c2.87-8.69,5.7-17.35,8.6-25.98c0.39-1.17-0.32-1.88-0.75-2.74
c-8.83-17.94-9.11-35.66,1.74-52.87c11.4-18.09,32.93-27,54.04-22.68c20.43,4.18,36.52,20.82,40.15,41.49
c5.1,29.1-14.92,56.54-44.05,60.28c-10.41,1.34-20.38-0.41-29.79-5.05c-1.41-0.7-2.56-0.74-3.97-0.28
c-7.81,2.54-15.64,5.01-23.45,7.53C29.21,131.71,28.39,132,27.57,131.72z M40.43,119.46c5.2-1.69,9.94-3.22,14.67-4.76
c0.93-0.3,1.84-0.78,2.78,0.02c2.29,1.96,5.2,2.78,7.9,3.8c13.89,5.21,27.07,3.22,39.31-4.84c8.49-5.58,14.04-13.55,17-23.22
c6.25-20.43-3.66-42.53-23.04-51.66c-19.4-9.14-42.8-2.79-54.48,15.12c-10.34,15.87-9.53,32-0.04,47.99
c0.8,1.35,0.99,2.4,0.45,3.89C43.42,110.17,42.04,114.6,40.43,119.46z"/>
<path class="st1" d="M40.43,119.46c1.61-4.86,2.99-9.29,4.56-13.65c0.54-1.49,0.35-2.54-0.45-3.89
c-9.49-15.98-10.3-32.12,0.04-47.99C56.25,36.01,79.66,29.67,99.05,38.8c19.38,9.13,29.29,31.22,23.04,51.66
c-2.96,9.67-8.52,17.64-17,23.22c-12.24,8.05-25.42,10.05-39.31,4.84c-2.7-1.01-5.61-1.84-7.9-3.8c-0.94-0.8-1.85-0.32-2.78-0.02
C50.37,116.24,45.63,117.77,40.43,119.46z M65.26,54.36c-2.57-0.19-4.57,0.68-6.06,2.66c-3.58,4.78-4.26,10.01-2.24,15.58
c1.96,5.4,5.65,9.65,9.31,13.95c6.42,7.54,14.39,12.45,23.9,15.08c2.85,0.79,5.56,0.82,8.35,0.06c5.19-1.4,8.56-5.22,8.63-9.68
c0.03-1.75-0.43-3-2.26-3.65c-1.64-0.58-3.16-1.49-4.74-2.23c-7.07-3.28-5.36-3.72-10.08,2.32c-1.47,1.88-2.87,2.21-4.91,1.26
c-5.47-2.55-10.03-6.18-13.62-11.05c-3.06-4.15-3.09-4.14,0.12-8.06c1.07-1.31,2.17-2.56,1.33-4.46c-1.4-3.2-2.68-6.45-4.13-9.63
C68.19,55.03,67.05,53.95,65.26,54.36z"/>
<path class="st0" d="M65.26,54.36c1.79-0.41,2.93,0.66,3.62,2.17c1.45,3.18,2.73,6.43,4.13,9.63c0.83,1.9-0.26,3.15-1.33,4.46
c-3.21,3.92-3.18,3.9-0.12,8.06c3.59,4.87,8.15,8.5,13.62,11.05c2.04,0.95,3.43,0.62,4.91-1.26c4.71-6.04,3.01-5.6,10.08-2.32
c1.58,0.74,3.1,1.64,4.74,2.23c1.83,0.65,2.29,1.9,2.26,3.65c-0.08,4.45-3.44,8.27-8.63,9.68c-2.79,0.75-5.5,0.73-8.35-0.06
C80.67,99,72.7,94.09,66.28,86.56c-3.66-4.3-7.36-8.55-9.31-13.95c-2.02-5.56-1.34-10.79,2.24-15.58
C60.69,55.04,62.69,54.18,65.26,54.36z"/>
</g>
</svg>
</td>
<td width="800px">


</td>
<td >

<a href="https://accounts.google.com/signin/v2/identifier?continue=https%3A%2F%2Fmail.google.com%2Fmail%2F&service=mail&sacu=1&rip=1&flowName=GlifWebSignIn&flowEntry=ServiceLogin" target="_blank">gmail</a>

</td>
</tr>

</table>

</body>
</html>
     
 
what is notes.io
 

Notes is a web-based application for online taking notes. You can take your notes and share with others people. If you like taking long notes, notes.io is designed for you. To date, over 8,000,000,000+ notes created and continuing...

With notes.io;

  • * You can take a note from anywhere and any device with internet connection.
  • * You can share the notes in social platforms (YouTube, Facebook, Twitter, instagram etc.).
  • * You can quickly share your contents without website, blog and e-mail.
  • * You don't need to create any Account to share a note. As you wish you can use quick, easy and best shortened notes with sms, websites, e-mail, or messaging services (WhatsApp, iMessage, Telegram, Signal).
  • * Notes.io has fabulous infrastructure design for a short link and allows you to share the note as an easy and understandable link.

Fast: Notes.io is built for speed and performance. You can take a notes quickly and browse your archive.

Easy: Notes.io doesn’t require installation. Just write and share note!

Short: Notes.io’s url just 8 character. You’ll get shorten link of your note when you want to share. (Ex: notes.io/q )

Free: Notes.io works for 14 years and has been free since the day it was started.


You immediately create your first note and start sharing with the ones you wish. If you want to contact us, you can use the following communication channels;


Email: [email protected]

Twitter: http://twitter.com/notesio

Instagram: http://instagram.com/notes.io

Facebook: http://facebook.com/notesio



Regards;
Notes.io Team

     
 
Shortened Note Link
 
 
Looding Image
 
     
 
Long File
 
 

For written notes was greater than 18KB Unable to shorten.

To be smaller than 18KB, please organize your notes, or sign in.