Buat Form Login Facebook


Siapa yang tidak tahu facebook pada sekarang ini ? yah media sosial yang cukup populer di zaman sekarang ini. Pada tutorial kali ini kita akan membuat halaman login mirip facebook.

Source codenya seperti berikut :
<!DOCTYPE html>
<html>
<head>
    <meta charset='utf-8'>
    <meta http-equiv='X-UA-Compatible' content='IE=edge'>
    <title>Page Title</title>
    <meta name='viewport' content='width=device-width, initial-scale=1'>
    <style type="text/css">
    @font-face {
        font-family: font;
        srcurl(FACEBOLF.OTF);
    }
    body{
        background-color#165ABF;    
        font-family: fong;    
    }
    h1{
        color:white;
        text-aligncenter;
        margin-top100px;
    }
    .username{
        background-colorwhite;
        border-top-left-radius5px;
        border-top-right-radius5px;
        width100%;
        marginauto;
        height40px;
    }
    input{
        outlinenone;
        margin-left10px;
        backgroundnone;
        bordernone;
        width100%;
        height100%;
    }
    .password{
border-bottom-left-radius5px;
        border-bottom-right-radius5px;
        background-colorwhite;:10px;
        border-topsolid #ddd 1px;
        width:100%;
        margin:auto;
        height:40px;
    }
    .btn-login{
        margin-top10px;
        backgroundnone;
        border:none;
        border-radius 5px;
        background-colorwhite;10px;
        width:100%;
        height:50px;
        color:black;
        background-color:#f4f4f4;
        opacity:0.6;
    }
    a{
        color:white;
        text-decoration:none;
    }
    .back{
        text-aligncenter;
    }
    .footer{
        position:fixed;
        margin-top:130px;
        color:white;
        text-aligncenter;
        width:100%
    }
    </style>
</head>
<body>
    <h1> Facebook </h1>
    <div class="username">
        <input type="text" placeholder="Email or phune Number">
    </div>
    <div class="password">
        <input type="password" placeholder="Password">
    </div>
    <button class="btn-login">Log In</button><br>
    <p class="back"><a href="#">Back</a></p>
    <div class="footer"><a href="#">Sign Up For Facebook</a></div>
</body>
</html>

Cukup simpel bukan, Berikut adalah penjelasannya :

    <meta name='viewport' content='width=device-width, initial-scale=1'>

Fungsi dari script diatas adalah agar tampilan menyesuaikan layar.
Source Code HTMLnya adalah :

<!DOCTYPE html>
<html>
<head>
    <meta charset='utf-8'>
    <meta http-equiv='X-UA-Compatible' content='IE=edge'>
    <title>Page Title</title>
    <meta name='viewport' content='width=device-width, initial-scale=1'>
</head>
<body>
    <h1> Facebook </h1>
    <div class="username">
        <input type="text" placeholder="Email or phune Number">
    </div>
    <div class="password">
        <input type="password" placeholder="Password">
    </div>
    <button class="btn-login">Log In</button><br>
    <p class="back"><a href="#">Back</a></p>
    <div class="footer"><a href="#">Sign Up For Facebook</a></div>
</body>
</html>

Untuk code CSS saya membuatkannya dalam 1 halaman, sebenarnya bisa kita bikin file css dengan nama style.css. untuk code cssnya sebagai berikut :
<style type="text/css">
    @font-face {
        font-family: font;
        srcurl(FACEBOLF.OTF);
    }
    body{
        background-color#165ABF;    
        font-family: fong;    
    }
    h1{
        color:white;
        text-aligncenter;
        margin-top100px;
    }
    .username{
        background-colorwhite;
        border-top-left-radius5px;
        border-top-right-radius5px;
        width100%;
        marginauto;
        height40px;
    }
    input{
        outlinenone;
        margin-left10px;
        backgroundnone;
        bordernone;
        width100%;
        height100%;
    }
    .password{
border-bottom-left-radius5px;
        border-bottom-right-radius5px;
        background-colorwhite;:10px;
        border-topsolid #ddd 1px;
        width:100%;
        margin:auto;
        height:40px;
    }
    .btn-login{
        margin-top10px;
        backgroundnone;
        border:none;
        border-radius 5px;
        background-colorwhite;10px;
        width:100%;
        height:50px;
        color:black;
        background-color:#f4f4f4;
        opacity:0.6;
    }
    a{
        color:white;
        text-decoration:none;
    }
    .back{
        text-aligncenter;
    }
    .footer{
        position:fixed;
        margin-top:130px;
        color:white;
        text-aligncenter;
        width:100%
    }
    </style>

Pada code css saya menambahkan sebuah font facebolf.otf yang mana dapat didownload di sini : Download

Untuk Semua file dapat didownload di sini : DOWNLOAD

Untuk Tampilan seperti berikut ini :

VIDEO

Berikan Komentar yang bermanfaat dan sehat.

Posting Komentar (0)
Lebih baru Lebih lama