-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 1.95 KB
/
index.html
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
<!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">
<meta name="author" content="Mayank Bhurani">
<meta name="keywords" content="HTML, CSS, JavaScript, JSON, XMLHttpRequest, XHR, Fetch API, PHP, PHPMailer">
<meta name="description" content="">
<link rel="icon" type="image/x-icon" sizes="32x32" href="./img/favicon.ico">
<title>Bhurani | Contact Us Form</title>
<link rel="stylesheet" href="./css/index.css">
</head>
<body>
<main>
<article class="contact-us">
<header>
<h2>Send us a Message</h2>
</header>
<form action="#">
<div class="dbl-field">
<div class="field">
<input type="text" name="name" placeholder="Enter your name" autofocus>
<i class="fas fa-user"></i>
</div>
<div class="field">
<input type="email" name="email" placeholder="Enter your email" required>
<i class="fas fa-envelope"></i>
</div>
</div>
<div class="dbl-field">
<div class="field">
<input type="tel" name="phone" placeholder="Enter your phone">
<i class="fas fa-phone-alt"></i>
</div>
<div class="field">
<input type="url" name="website" placeholder="Enter your website">
<i class="fas fa-globe"></i>
</div>
</div>
<div class="message">
<textarea name="message" placeholder="Write your message" required></textarea>
<i class="material-icons">message</i>
</div>
<div class="button-area">
<button type="submit">Send Message</button>
<span></span>
</div>
</form>
</article>
</main>
<script src="./js/index.js"></script>
</body>
</html>