I need help with saving the input to cookies and displaying it to the user. I need to make the text in the input to change into the div and display the same text for the user every time he visits the page.
Now I have just the input because I really don't know how to make it.
HTML
<input type="text" class="name" placeholder="What's your name?"/>
CSS
@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700');
.name{
font-family: 'Roboto Condensed', sans-serif;
font-size: 3.5vw;
border: 0;
outline:0;
background: transparent;
border-bottom: 2px solid white;
width: 30%;
color:#000000;
position:fixed;
top:60%;
left:50%;
margin-left:10px;
}
Thanks for your the help