HTMLify

indec.html
Views: 151 | Author: dakshbadal1379
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        body{
            margin-left: 80px;
        }
    </style>
</head>
<body>
    <h1>Contact Us</h1>
    Name:<br>
    <input type="text" name="" id=""><br>
    Email:<br>
    <input type="text" name="" id=""><br>
    Subject:<br>
    <input type="text" name="" id=""><br>
    Message:<br>
    <textarea cols="40" rows="4"></textarea><br>
    Phone:<br>
    <input type="text" name="" id="" placeholder="0123-456-789"><br><br>
    <input type="button" value="submit"><br><hr>
    <h1>Company Address</h1>
    <br>
    <em><b>123 Main St,<br>City,<br>Country<br>Zip Code: 12345</b></em><hr>
    

</body>
</html>

Comments