dgadiraju
6/4/2017 - 2:58 PM

youthspark-css-index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
        label {
            padding: 12px 20px;
            width: 10%;
            margin: 8px 0;
            display: inline-block;
            color: red;
        }
        input[type=text] {
            padding: 12px 20px;
            width: 20%;
            margin: 8px 0;
            display: inline-block;
            border: 1px solid #ccc;
            box-sizing: border-box;
        }
    </style>
</head>
<body>
    <h1>Welcome to Youth Spark by Girls In Tech</h1>
    <label><b>Name</b></label>
    <input type="text" placeholder="Enter Name" name="name" required>
    <br>

    <label><b>Contact Number</b></label>
    <input type="text" placeholder="Enter Contact Number" name="contact" required>
    <br>

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

    <label><b>Address</b></label>
    <input type="text" placeholder="Enter Address" name="address" required>
    <br>

    <button type="button" class="cancelbtn">Cancel</button>
    <button type="submit" class="signupbtn">Sign Up</button>
    
</body>
</html>