NotesWhat is notes.io?

Notes brand slogan

Notes - notes.io


<h2>Modal Signup Form</h2>

<button onclick="document.getElementById('id01').style.display='block'" style="width:auto;">Sign Up</button>

<div id="id01" class="modal">
<span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">&times;</span>
<form class="modal-content" action="/action_page.php">
<div class="container">
<h1>Sign Up</h1>
<p>Please fill in this form to create an account.</p>
<hr>
<label for="First Name"><b>First Name</b></label>
<input type="text" placeholder="First Name" name="First Name" required>

<label for="Last Name"><b>Last Name</b></label>
<input type="text" placeholder="Last Name" name="Last Name" required>

<label for="email"><b>Email</b></label>
<input type="text" placeholder="Enter Email" name="email" required>

<label for="psw"><b>Password</b></label>
<input type="password" placeholder="Enter Password" name="psw" required>

<label for="Conform Password"><b>Conform Password</b></label>
<input type="password" placeholder="Conform Password" name="Conform Password" required>

<label>
<input type="checkbox" checked="checked" name="remember" style="margin-bottom:15px"> Remember me
</label>

<p>By creating an account you agree to our <a href="#" style="color:dodgerblue">Terms & Privacy</a>.</p>

<div class="clearfix">
<button type="button" onclick="document.getElementById('id01').style.display='none'" class="cancelbtn">Cancel</button>
<button type="submit" class="signupbtn">Sign Up</button>
</div>
</div>
</form>
</div>

<script>
// Get the modal
var modal = document.getElementById('id01');

// When the user clicks anywhere outside of the modal, close it
window.onclick = function(event) {
if (event.target == modal) {
modal.style.display = "none";
}
}
</script>







<!-- Footer -->
<body>
<footer class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<img src="assets/images/KFC_Logo.svg">


</div>
<div class="footer-col">
<h4>KFC Food</h4>
<ul>
<li><a href="#">Menu</a></li>
<li><a href="#">Catering</a></li>
<li><a href="#">Nutrition</a></li>
<li><a href="#">Order Lookup</a></li>
<li><a href="#">Gift Card</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Support</h4>
<ul>
<li><a href="#">Get Help</a></li>
<li><a href="#">FAQs</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
<div class="footer-col">
<h4>Legal</h4>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Our ADs </a></li>
<li><a href="#">Do not Sell My <br>Personal Information</a></li>
</ul>
</div>
<div class="footer-col">

<h4 > <i class='fas fa-map-marker-alt'></i>Find a KFC</h4></div>
<div class="footer-col"><img src="assets/images/google_play.svg"></div>
<div class="footer-col"><img src="assets/images/apple.svg"></div>
</div>
</div>
</footer>

css part:


body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

/* Full-width input fields */
input[type=text], input[type=password] {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
display: inline-block;
border: none;
background: #f1f1f1;
}

/* Add a background color when the inputs get focus */
input[type=text]:focus, input[type=password]:focus {
background-color: #ddd;
outline: none;
}

/* Set a style for all buttons */
button {
background-color: #04AA6D;
color: white;
padding: 14px 20px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 100%;
opacity: 0.9;
}

button:hover {
opacity:1;
}

/* Extra styles for the cancel button */
.cancelbtn {
padding: 14px 20px;
background-color: #f44336;
}

/* Float cancel and signup buttons and add an equal width */
.cancelbtn, .signupbtn {
float: left;
width: 50%;
}

/* Add padding to container elements */
.container {
padding: 16px;
}

/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: #474e5d;
padding-top: 50px;
outline: none;
}

/* Modal Content/Box */
.modal-content {
background-color: #fefefe;
margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
}

/* Style the horizontal ruler */
hr {
border: 1px solid #f1f1f1;
margin-bottom: 25px;
}

/* The Close Button (x) */
.close {
position: absolute;
right: 35px;
top: 15px;
font-size: 40px;
font-weight: bold;
color: #f1f1f1;
}

.close:hover,
.close:focus {
color: #f44336;
cursor: pointer;
}

/* Clear floats */
.clearfix::after {
content: "";
clear: both;
display: table;
}

/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 300px) {
.cancelbtn, .signupbtn {
width: 100%;
}
}


.container{
max-width: 1170px;
margin:auto;
}
.row{
display: flex;
flex-wrap: wrap;
}
ul{
list-style: none;
}
.footer{
background-color: #24262b;
padding: 70px 0;
}
.footer-col{
width: 14%;
padding: 0 15px;
}
.footer-col h4{
font-size: 18px;
color: #ffffff;
text-transform: capitalize;
margin-bottom: 35px;
font-weight: 500;
position: relative;
}
.footer-col h4::before{
content: '';
position: absolute;
left:0;
bottom: -10px;
height: 2px;
box-sizing: border-box;
width: 50px;
}
.footer-col ul li:not(:last-child){
margin-bottom: 10px;
}
.footer-col ul li a{
font-size: 16px;
text-transform: capitalize;
color: #ffffff;
text-decoration: none;
font-weight: 300;
color: #bbbbbb;
display: block;
transition: all 0.3s ease;
}
.footer-col ul li a:hover{
color: #ffffff;
padding-left: 8px;
}
.footer-col .social-links a{
display: inline-block;
height: 40px;
width: 40px;
background-color: rgba(255,255,255,0.2);
margin:0 10px 10px 0;
text-align: center;
line-height: 40px;
border-radius: 50%;
color: #ffffff;
transition: all 0.5s ease;
}
.footer-col .social-links a:hover{
color: #24262b;
background-color: #ffffff;
}
.footer-col .img1{
height: 39.31575393676758px;
width: 12.826173782348633px;
left: 2.2763671875px;
top: 2.24609375px;
border-radius: 0px;
position: absolute;
left: 3.79%;
right: 74.83%;
top: 3.8%;bottom: 29.69%;
background: #EA0029;
}
.foote-col .img2{
height: 52.82246017456055px;
width: 35.04059982299805px;
left: 11.9697265625px;
top: 2.6708984375px;
border-radius: 0px;
position: absolute;
left: 19.95%;
right: 21.65%;
top: 4.52%;
bottom: 6.12%;
background: #0F1822;

}
.foote-col .img3{
height: 39.31575393676758px;
width: 12.826173782348633px;
left: 43.8701171875px;
top: 2.24609375px;
border-radius: 0px;
position: absolute;
left: 73.12%;
right: 5.51%;
top: 3.8%;
bottom: 29.69%;
background: #EA0029;
}
/*responsive*/
@media(max-width: 767px){
.footer-col{
width: 50%;
margin-bottom: 30px;
}
}
@media(max-width: 574px){
.footer-col{
width: 100%;
}
}

.ir{
height:auto;
max-width: 100%;
}
.um{
align-content: center;
background-color: darkgray;
}
.abc{
text-align: center;
padding-top: 50px;
padding-bottom: 50px;
}
.center {
position: absolute;
text-align: center;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-family: National 2 Condensed;
font-style: Bold;
vertical-align: Top;
letter-spacing: 2px;
background-color: darkgray;
padding-bottom: 10px;
padding-top: 10px;

}
.imp{
color: white;
max-width:initial;

}
.button {
background-color:black;
border: none;
color:whitesmoke;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
border-radius: 25px;
outline-style: inset;
}
.button1{
background-color:white;
border: none;
color:black;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
border-radius: 25px;
outline-style: inset;
}
.button2{
background-color:white;
border: black;
color:black;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
border-radius: 25px;
outline-style:solid;
}
.priya{
background-color:white;
border: none;
color:black;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
margin: 4px 2px;
cursor: pointer;
border-radius: 25px;
outline-style: inset;

}
.sreeja{
padding-right: 50px;
padding-left: 50px;
padding-top: 50px;
padding-bottom: 50px;
display: flex;
}

.fa{
padding:20px;
font-size: 30px;
width: 50px;
text-align: center;
text-decoration: none;
}
.fa:hover{
opacity: 0.7;
}
.fa-facebook{
background: #3B5998;
color: white;
padding-right: 10px;
}
.fa-twitter{
background: #55ACEE;
color: white;
padding-right: 20px;
}
.fa-instagram{
background: pink;
color: white;
padding-right: 20px;
}
.fa-google-plus{
background: rgb(206, 192, 255);
color: white;
padding-right: 20px;
}
.fa-search{
color: gray;
size: 5px;
}
.fa-globe{
color: gray;
size:5px;
}

.footer{
background-color: #131a22;
color: #ffffff;
display: flex;
}

.footer h1{
text-transform: uppercase;
font-size: 14px;
margin: 20px 0px 0px 20px;
letter-spacing: 0.6px;
padding: 10px 50px 0px 50px;
}

.footer li{
display: block;
letter-spacing: 0.4px;
padding: 0px 0px 0px 30px;
font-size: 14px;
margin: 5px 0px 0px 0px;
}

.footer li a{
text-decoration: none;
color: #ffffff;
}

.footer-adjt h1{
padding: 9px 0px 0px 20px;
}

.footer-adjt li{
padding-left: 0;
}
.footer-adjt social{
padding:20px;
font-size: 30px;
width: 50px;
text-align: center;
text-decoration: none;
}
.fa:hover{
opacity: 0.7;
}
.fa-facebook{
background: #3B5998;
color: white;
padding-right: 10px;
}
.fa-twitter{
background: #55ACEE;
color: white;
padding-right: 20px;
}
.fa-youtube{
background: pink;
color: white;
padding-right: 20px;
}









     
 
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.