NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io

<!---------------------ANASAYFA,HAKKIMIZDA,FOTOĞRAFLAR VS--------------------------------------------------------------------------------------------->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Web Sayfam</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}

header {
background-color: #333;
color: #fff;
text-align: center;
padding: 1em;
}

nav {
background-color: #eee;
padding: 1em;
text-align: center;
}

nav a {
margin: 0 1em;
text-decoration: none;
color: #333;
font-weight: bold;
}

section {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1, h2 {
color: #333;
}

p {
line-height: 1.6;
color: #666;
}

footer {
text-align: center;
padding: 1em;
background-color: #333;
color: #fff;
}
</style>
</head>
<body>

<header>
<h1>Web Sayfam</h1>
<p>Hoş Geldiniz!</p>
</header>

<nav>
<a href="#anasayfa">Anasayfa</a>
<a href="#hakkimizda">Hakkımızda</a>
<a href="#fotograflar">Fotoğraflar</a>
<a href="#iletisim">İletişim</a>
</nav>

<section id="anasayfa">
<h2>Anasayfa</h2>
<p>Bu web sayfasında, anasayfa içeriği yer alabilir.</p>
</section>

<section id="hakkimizda">
<h2>Hakkımızda</h2>
<p>Şirketiniz ya da kişisel bilgileriniz hakkında daha fazla detay ekleyebilirsiniz.</p>
</section>

<section id="fotograflar">
<h2>Fotoğraflar</h2>
<p>Çeşitli fotoğraflar veya görseller burada yer alabilir.</p>
</section>

<section id="iletisim">
<h2>İletişim</h2>
<p>Bize ulaşmak için aşağıdaki iletişim bilgilerini kullanabilirsiniz.</p>
</section>

<footer>
<p>&copy; 2023 Web Sayfanız</p>
</footer>

</body>
</html>




<!------------------------------------------------------------------------------------------------------------------------------------------------------------->
<!-------------------------------GİRİŞ OANELİ İNSTEGRAM SİYAH-------------------------------------------------------------------------------------------------->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Paneli</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.login-panel {
background-color: #fff;
border: 1px solid #e5e5e5;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
overflow: hidden;
width: 300px;
max-width: 100%;
text-align: center;
}

.login-header {
background-color: #333;
color: #fff;
padding: 16px;
}

.login-form {
padding: 16px;
}

.form-group {
margin-bottom: 16px;
}

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: bold;
}

.form-group input {
width: 100%;
padding: 8px;
box-sizing: border-box;
}

.login-btn {
background-color: #333;
color: #fff;
padding: 8px 16px;
border: none;
border-radius: 4px;
cursor: pointer;
}

.login-btn:hover {
background-color: #555;
}

</style>
</head>
<body>

<div class="login-panel">
<div class="login-header">
<h2>Login</h2>
</div>
<div class="login-form">
<div class="form-group">
<label for="username">Kullanıcı Adı:</label>
<input type="text" id="username" name="username" required>
</div>
<div class="form-group">
<label for="password">Şifre:</label>
<input type="password" id="password" name="password" required>
</div>
<button class="login-btn" type="submit">Giriş Yap</button>
</div>
</div>

</body>
</html>



<!------------------------------------------------------------------------------------------------------------------------------------------------------------->
<!---------------------------İNSTEGRAM GİRİŞ PANELİ BEYAZ------------------------------------------------------------------------------------------------------>


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Giriş Yap</title>
<style>
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #fafafa;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}

.login-panel {
background-color: #fff;
border: 1px solid #dbdbdb;
border-radius: 5px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
overflow: hidden;
width: 300px;
max-width: 100%;
text-align: center;
}

.instagram-logo {
margin: 16px 0;
font-size: 2em;
color: #3897f0;
font-weight: bold;
}

.login-form {
padding: 16px;
}

.form-group {
margin-bottom: 16px;
}

.form-group label {
display: block;
margin-bottom: 8px;
font-weight: bold;
color: #262626;
}

.form-group input {
width: 100%;
padding: 8px;
box-sizing: border-box;
border: 1px solid #dbdbdb;
border-radius: 3px;
}

.login-btn {
background-color: #3897f0;
color: #fff;
padding: 8px;
border: none;
border-radius: 3px;
cursor: pointer;
}

.login-btn:hover {
background-color: #26669c;
}
</style>
</head>
<body>

<div class="login-panel">
<div class="instagram-logo">Instagram</div>
<div class="login-form">
<div class="form-group">
<label for="username">Kullanıcı Adı:</label>
<input type="text" id="username" name="username" required>
</div>
<div class="form-group">
<label for="password">Şifre:</label>
<input type="password" id="password" name="password" required>
</div>
<button class="login-btn" type="submit">Giriş Yap</button>
</div>
</div>

</body>
</html>


<!------------------------------------------------------------------------------------------------------------------------------------------------------------->
<!-------------------------SİYAH EKRANLI GİRİŞ PANELİ---------------------------------------------------------------------------------------------------------->


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body {
box-sizing: border-box;
font-family: Lato, Arial;
text-align: center;
color: #eee;
background-color: #000;

}

h2 {
margin-top: 1em;
margin-bottom: 1em;
color: #eee;
font-weight: 400;
text-align: center;
font-size: 200%;
letter-spacing: 4px;
}

h4 {
margin-top: 1em;
color: #eee;
font-size: 150%;
font-weight: 300;
text-align: center;
}

button {
display: inline;
background: #01A4E0;
color: #2184AC;
border: 0;
padding: 4px;
}

input {
display: block;
width: 98%;
height: 30px;
margin-top: 1.0em;
padding: 4px;
}

small {
display: inline-block;
margin-top: 5px;
color: white;
font-size: 100%;
color: #fff;
}

.login-box {
padding: 1em 1em 1em 1em;
margin: auto;
text-align: center;
display: block;
background-color: #6f92dc;
/*border: 1px dashed white;*/
width: 60%;
height: auto;
}

.outer-box {
display: block;
margin: auto;
background: #6f92dc;
border-radius: 5px;
width: 50%;
height: 20em;
height: auto;
}

#btn-login {
display: block;
width: 100%;
height: 40px;
margin-top: 2.0em;
border-radius: 4px;
background-color: #3366cc;
color: #fff;
}

#btn-forgot {
display: block;
width: 100%;
margin-top: 1.0em;
border-radius: 2px;
color: #fff;
background-color: #000D36;
}

</style>
</head>
<body>
<div class="outer-box">
<div class="login-box">
<h4 class="login-text">Giriş</h4>
<center>
<input placeholder="Kullanıcı Adı">
<input placeholder="Şifre">

<button id="btn-login">Giriş Yap</button>
<button id="btn-forgot">Şifremi unuttum!</button>
</center>
</div>
</div>

</body>
</html>



<!------------------------------------------------------------------------------------------------------------------------------------------------------------->
<!----------------------------------------WEB SİTESİ ÖRNEĞİ---------------------------------------------------------------------------------------------------->


<!DOCTYPE html>
<html lang="tr">
<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>Tasarım Kodlama</title>
<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=Nunito+Sans:wght@200&display=swap" rel="stylesheet">
<style>
*{
box-sizing: border-box;
}

html{
font-size:62.5%;/*1rem = 10px*/
}

body,h1,h2,ul{
margin:0;
padding:0;

}
ul{
list-style: none;
}

/*******************/
body{
font-family: 'Nunito Sans', sans-serif;
}
.arkaplan{
background-color: #25373D;
}
.kapsayici{
width: 960px;
margin:0 auto;
}

.ust{
display: flex;
justify-content: space-between;
align-items: center;
min-height: 200px;
}

.ust .logo{
text-align: center;
color:#fff;
}
.ust .logo h1{
font-size:4rem;
letter-spacing: .5rem;
}

.ust .logo h1::first-letter{
color:#FCB941;
}

.ust .logo h1:hover::first-letter{
background-color: #FCB941;
color:#25373D;
}

.ust .logo h2{
font-size:2.4rem;
}





.ust .menu ul{
display: flex;
}
.ust .menu ul li{
margin:0 1rem;
}

.ust .menu ul a{
color:#fff;
text-decoration: none;
font-size:1.8rem;
padding:0 2rem;
}
.ust .menu ul a:hover{
color:#FCB941;
}

.orta .bolum1{
margin-top:20px;
border:10px solid #25373D;
padding:20px;
}

.orta .bolum1 img{
display: block;
width: 100%;
}

.orta .bolum2{
margin-top:20px;
display: flex;
justify-content: space-between;
}
.orta .bolum2 .kutu{
flex-basis: 290px;
}

.orta .bolum2 .kutu h2{
font-size: 2rem;
}

.orta .bolum2 .kutu p{
font-size: 1.6rem;
}

.orta .bolum3{
display: flex;
justify-content: space-between;
gap:20px;
}

.orta .bolum3 h1{
font-size:2.5rem;
}

.orta .bolum3 p{
font-size:1.6rem;
}

.alt{
margin-top:20px;
padding:20px 0;
display: flex;
gap:20px;
}
.alt .baglanti{
flex-grow: 1;
}

.alt .baglanti ul li{
border-bottom:dotted 1px #FCB941;
margin:5px 0;
}

.alt .baglanti a{
font-size:1.6rem;
text-decoration: none;
color:#FCB941;
}


.cizgi{
border-top:dotted 1px #FCB941;
margin:20px 0;
}

.alt-kenar-10{
border-bottom:10px solid #FCB941;
}

</style>
</head>
<body>

<!-- sayfa üstü-->
<div class="arkaplan alt-kenar-10">
<div class="ust kapsayici">
<div class="logo">
<h1>Gülsüm Kamer</h1>
<h2>www.websayfam.com</h2>
</div>
<div class="menu">
<ul>
<li><a href="#">AnaSayfa</a></li>
<li><a href="#">Biyografi</a></li>
<li><a href="#">Hobiler</a></li>
<li><a href="#">Fotoğraflar</a></li>
<li><a href="#">İletişim</a></li>
</ul>
</div>
</div>
</div>

<!-- sayfa ortası-->
<div class="orta kapsayici">
<div class="bolum1">
<img src="https://picsum.photos/960/360" alt="Kapak resmi">
</div>
<div class="bolum2">
<div class="kutu">
<img src="https://picsum.photos/290/180" alt="">
<h2>Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Velit temporibus praesentium iure </p>
</div>
<div class="kutu">
<img src="https://picsum.photos/290/180" alt="">
<h2>Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Velit temporibus praesentium iure </p>
</div>
<div class="kutu">
<img src="https://picsum.photos/290/180" alt="">
<h2>Lorem Ipsum</h2>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Velit temporibus praesentium iure </p>
</div>


</div>
<div class="cizgi"></div>
<div class="bolum3">
<div class="icerik">
<h1>Lorem Ipsum</h1>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Voluptatum atque ullam provident, adipisci quaerat delectus repudiandae voluptatem quo odit consequuntur modi. Ipsa sint quam corrupti vitae dolorem dicta, quia corporis.</p>
<p>Esse, nulla neque soluta ipsa, voluptates aliquid tempora sequi nisi mollitia quod porro ipsum ratione dolores, ad ullam. Culpa numquam animi dolor architecto maiores ad saepe soluta minima eum totam.</p>
</div>
<div class="gorsel">
<img src="https://picsum.photos/450/250" alt="İlgili ürün bilgisi">
</div>
</div>
</div>

<!-- sayfa altı-->
<div class="arkaplan">
<div class="alt kapsayici">
<div class="baglanti">
<ul>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
</ul>
</div>
<div class="baglanti">
<ul>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
</ul>
</div>
<div class="baglanti">
<ul>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
</ul>
</div>
<div class="baglanti">
<ul>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
<li><a href="#">Sayfa</a></li>
</ul>
</div>
</div>
</div>

</body>
</html>


<!------------------------------------------------------------------------------------------------------------------------------------------------------------->

<!-------------------------aşşağıda yakınlaştırılabilir resim galerisi var-------------------------------------------------------------------------------------->



<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>


* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font: 14px/1 'Open Sans', sans-serif;
color: #555;
background: #e5e5e5;
}

.gallery {
width: 640px;
margin: 0 auto;
padding: 5px;
background: #fff;
box-shadow: 0 1px 2px rgba(0,0,0,.3);
}

.gallery > div {
position: relative;
float: left;
padding: 5px;
}

.gallery > div > img {
display: block;
width: 200px;
transition: .1s transform;
transform: translateZ(0); /* hack */
}

.gallery > div:hover {
z-index: 1;
}

.gallery > div:hover > img {
transform: scale(1.7,1.7);
transition: .3s transform;
}

.cf:before, .cf:after {
display: table;
content: "";
line-height: 0;
}

.cf:after {
clear: both;
}

h1 {
margin: 40px 0;
font-size: 30px;
font-weight: 300;
text-align: center;
}

</style>
</head>
<body>
<h1>Yakınlaştırılabilir CSS Resim Galerisi</h1>

<div class="gallery cf">
<div>
<img src="http://abload.de/img/a6aawu.jpg" />
</div>
<div>
<img src="http://abload.de/img/a6aawu.jpg" />
</div>
<div>
<img src="http://abload.de/img/a6aawu.jpg" />
</div>
<div>
<img src="http://abload.de/img/a6aawu.jpg" />
</div>
<div>
<img src="http://abload.de/img/a6aawu.jpg" />
</div>
<div>
<img src="http://abload.de/img/a6aawu.jpg" />
</div>
</div>





</body>
</html>


<!------------------------------------------------------------------------------------------------------------------------------------------------------------->
<!----------------------------------------------İLETİŞİM FORMU------------------------------------------------------------------------------------------------->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}

body {
font-family: "Roboto", Helvetica, Arial, sans-serif;
font-weight: 100;
font-size: 13px;
line-height: 30px;
color: #888;
background: #79A7A8;
}

.container {
max-width: 400px;
width: 100%;
margin: 0 auto;
position: relative;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea,
#contact button[type="submit"] {
font: 500 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

#contact {
background: #F9F9F9;
padding: 25px;
margin: 100px 0;
box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

#contact h2 {
display: block;
font-size: 30px;
font-weight: 300;
margin-bottom: 15px;
}

.form-control{
border: none !important;
margin: 0 0 10px;
min-width: 100%;
padding: 0;
width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
width: 100%;
border: 1px solid #ccc;
background: #FFF;
margin: 0 0 5px;
padding: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact textarea:hover {
-webkit-transition: border-color 0.4s ease-in-out;
-moz-transition: border-color 0.4s ease-in-out;
transition: border-color 0.4s ease-in-out;
border: 1px solid #aaa;
}

#contact textarea {
height: 120px;
max-width: 100%;
resize: none;
}

#contact button[type="submit"] {
cursor: pointer;
width: 100%;
border: none;
background: #79A7A8;
color: #FFF;
margin: 0 0 5px;
padding: 10px;
font-size: 15px;
}

#contact button[type="submit"]:hover {
background: #355C7D;
-webkit-transition: background 0.4s ease-in-out;
-moz-transition: background 0.4s ease-in-out;
transition: background-color 0.4s ease-in-out;
}

#contact button[type="submit"]:active {
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

#contact input:focus,
#contact textarea:focus {
outline: 0;
border: 1px solid #aaa;
}

</style>
</head>
<body>
<div class="container">
<form id="contact" action="" method="">
<h2>İletişim Sayfası</h2>
<div class="form-control">
<input placeholder="Adınız Soyadınız" type="text" required autofocus>
</div>
<div class="form-control">
<input placeholder="E-Posta Adresiniz" type="email" required>
</div>
<div class="form-control">
<input placeholder="Konu" type="text" required>
</div>
<div class="form-control">
<textarea placeholder="Lütfen Mesajınızı Buraya Yazın.." required></textarea>
</div>
<div class="form-control">
<button name="submit" type="submit" id="submit">GÖNDER</button>
</div>
</form>
</div>
</body>
</html>


<!------------------------------------------------------------------------------------------------------------------------------------------------------------->
<!----------------------------ANİMASYONLU ARAMA KUTUSU--------------------------------------------------------------------------------------------------------->

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">

</head>
<body>
<form>
<div id="box">
<input type="text" id="search" placeholder="Ara..">
<i class="fa fa-search"></i>
</div>
</form>
<style>


#box {
max-width: 300px;
position: relative;
}

#box .fa-search {
position: absolute;
top: 14px;
left: 12px;
font-size: 20px;
color:cornflowerblue;
}

#search {
width: 100px;
box-sizing: border-box;
border: 2px solid cornflowerblue;
border-radius: 4px;
font-size:18px;
padding: 12px 20px 12px 40px;
-moz-transition: width 0.4s ease-in-out;
-o-transition: width 0.4s ease-in-out;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
}

#search:focus {
width: 100%;
}
</style>
</body>
</html>

<!------------------------------------------------------------------------------------------------------------------------------------------------------------->
<!----------------------------------------TAKVİM YAPIMI REKPORSİW İLE------------------------------------------------------------------------------------------>

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>

* {
box-sizing: border-box;
}

ul {
list-style-type: none;
}

.month {
padding: 70px 25px;
width: 100%;
background: #F8A035;
text-align: center;
}

.month ul {
margin: 0;
padding: 0;
}

.month ul li {
color: white;
font-size: 20px;
text-transform: uppercase;
letter-spacing: 3px;
}

.month .prev {
float: left;
padding-top: 10px;
}

.month .next {
float: right;
padding-top: 10px;
}

.weekdays {
margin: 0;
padding: 10px 0;
background-color: #ddd;
}

.weekdays li {
display: inline-block;
width: 13.6%;
color: #666;
text-align: center;
}

.days {
padding: 10px 0;
background: #eee;
margin: 0;
}

.days li {
list-style-type: none;
display: inline-block;
width: 13.6%;
text-align: center;
margin-bottom: 5px;
font-size:12px;
color: #777;
}

.days li .active {
padding: 5px;
background:#F8A035;
color: white !important
}

/* Tasarımın responsive olması için gerekli media query kodları */
@media screen and (max-width:720px) {
.weekdays li, .days li {width: 13.1%;}
}

@media screen and (max-width: 420px) {
.weekdays li, .days li {width: 12.5%;}
.days li .active {padding: 2px;}
}

</style>
</head>
<body>
<div class="month">
<ul>
<li class="prev">&#10094;</li>
<li class="next">&#10095;</li>
<li>Mart<br>
<span>2020</span>
</li>
</ul>
</div>

<ul class="weekdays">
<li>Pzt</li>
<li>Sal</li>
<li>Çar</li>
<li>Per</li>
<li>Cum</li>
<li>Cmt</li>
<li>Paz</li>
</ul>

<ul class="days">
<li>1</li>
<li>2</li>
<li>3</li>
<li><span class="active">4</span></li>
<li>5</li>
<li>6</li>
<li>7</li>
<li>8</li>
<li>9</li>
<li>10</li>
<li>11</li>
<li>12</li>
<li>13</li>
<li>14</li>
<li>15</li>
<li>16</li>
<li>17</li>
<li>18</li>
<li>19</li>
<li>20</li>
<li>21</li>
<li>22</li>
<li>23</li>
<li>24</li>
<li>25</li>
<li>26</li>
<li>27</li>
<li>28</li>
<li>29</li>
<li>30</li>
<li>31</li>
</ul>

</body>
</html>








     
 
what is notes.io
 

Notes.io is a web-based application for 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 12 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.