File size: 941 Bytes
620d324
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html>
  <head>
    <meta charset="UTF-8">
    <title>Contact Form</title>
  </head>
  <body>
    <h1>Contact Form</h1>
    <form action="/submit-form" method="POST">
      <label for="name">Name:</label>
      <input type="text" id="name" name="name" required>
      <br>
      <label for="email">Email:</label>
      <input type="email" id="email" name="email" required>
      <br>
      <label for="location">Location:</label>
      <input type="text" id="location" name="location" required>
      <br>
      <label for="github">GitHub:</label>
      <input type="url" id="github" name="github" required>
      <br>
      <label for="linkedin">LinkedIn:</label>
      <input type="url" id="linkedin" name="linkedin" required>
      <br>
      <label for="phone">Phone:</label>
      <input type="tel" id="phone" name="phone" required>
      <br><br>
      <input type="submit" value="Submit">
    </form>
  </body>
</html>