Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Online CSS Editor

<!DOCTYPE html>
<html>
<head>
    <style>
        #adminid{
            background-color: lightgrey;
            width: 300px;
            padding: 10px;
            margin: 30px;
            border: 15px solid green;
            position: absolute;
            left: 10px;
            top: 150px;

        }

        #registeredid{
            background-color: lightgrey;
            width: 300px;
            padding: 10px;
            margin: 30px;
            border: 15px solid orange;
            position: absolute;
            right: 500px;
            top: 150px;
        }

        #newbusid{
            background-color: lightgrey;
            width: 300px;
            padding: 10px;
            margin: 30px;
            border: 15px solid red;
            position: absolute;
            left:10px;
            bottom: 250px;

        }

        #guestid{
            background-color: lightgrey;
            width: 300px;
            padding: 10px;
            margin: 30px;
            border: 15px solid blue;
            position: absolute;
            right: 500px;
            bottom: 250px;


        }

        #titleid{
            background-color: white;
            width: 500px;
            padding: 10px;
            margin: 30px;
            border: 15px solid coral;
            position: absolute;
            left: 200px;

        }


    </style>
</head>
<body>
<div id="titleid">
    <h1 style="position: relative;left:100px">Business Registration</h1>
</div>

<div id="adminid">
    <h2>Administrator</h2>
    <button onclick="">Login</button>
</div>

<div id="registeredid">
    <h2>Registered Business</h2>
    <button onclick="">Login</button>
</div>

<div id="newbusid">
    <h2>New Business</h2>
    <button onclick="">Sign up</button>
</div>

<div id="guestid">
    <h2>Guest User</h2>
    <button onclick="">View page</button>
</div>




</body>
</html>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.