File size: 2,759 Bytes
c74f857
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Atul Singh - Contact</title>
    <link rel="stylesheet" href="style.css">
    <script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</head>
<body>
    <div class="container">
        <div class="sidebar">
            <nav>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="intro.html">About</a></li>
                    <li><a href="projects.html">Projects</a></li>
                    <li><a href="contact.html" class="active">Contact</a></li>
                    <li><a href="blog.html">Blog</a></li>
                </ul>
            </nav>
        </div>
        <div class="main">
            <div class="hamburger">
                <i class="fas fa-bars hum"></i>
                <i class="fas fa-times cros"></i>
            </div>
            <div class="contactform">
                <h2>Contact Me</h2>
                <form id="contactForm">
                    <div class="mb-3">
                        <label for="yourname" class="form-label">Name</label>
                        <input type="text" class="form-control" id="yourname" required>
                    </div>
                    <div class="mb-3">
                        <label for="youremail" class="form-label">Email Address</label>
                        <input type="email" class="form-control" id="youremail" required>
                        <div class="form-text">Your email will remain confidential.</div>
                    </div>
                    <div class="mb-3">
                        <label for="yourphone" class="form-label">Phone</label>
                        <input type="tel" class="form-control" id="yourphone" required>
                    </div>
                    <div class="mb-3">
                        <label for="yourmessage" class="form-label">Message</label>
                        <textarea class="form-control" id="yourmessage" rows="4" required></textarea>
                    </div>
                    <div class="mb-3 form-check">
                        <input type="checkbox" class="form-check-input" id="isclient">
                        <label class="form-check-label" for="isclient">Interested in a project collaboration</label>
                    </div>
                    <button type="submit" class="btn btn-primary">Submit</button>
                </form>
            </div>
        </div>
    </div>
    <script src="script.js"></script>
</body>
</html>