-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (48 loc) · 2.29 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet"/>
<link rel="stylesheet" href="style.css">
<title>Contact Us</title>
</head>
<body>
<div class="wrapper">
<div class="hd-line"><h1>Contact Us</h1></div>
<div class="container">
<div class="box" id="box1">
<div class="box1">
<i class="ri-map-pin-2-fill icon"></i>
<div class="caption">Address</div>
<p class="icon-txt">Dhola, WB, India</p>
</div>
<div class="box1">
<i class="ri-phone-fill icon"></i>
<div class="caption">Phone</div>
<p class="icon-txt">+91 1234567890 </p>
<p class="icon-txt">+91 9876543210 </p>
</div>
<div class="box1">
<i class="ri-mail-fill icon"></i>
<div class="caption">Email</div>
<p class="icon-txt">[email protected]</p>
<p class="icon-txt">[email protected]</p>
</div>
</div>
<div class="box" id="box2">
<h3 class="hd">Send us a message</h3>
<p>If you have any work from me or any types of queries related to my work, you can send me message from here. It's my pleasure to help you.</p>
<div >
<form action="confirm.html" class="form">
<input type="text" name="Name" id="name" placeholder="Enter your name" class="form-input" required>
<input type="email" name="email" id="email" placeholder="Enter your email" class="form-input" required>
<input type="text" name="message" id="message" placeholder="Enter your message" class="form-input">
<input type="submit" name="Submit" id="submit" value="Send Now" class="submit" required>
</form>
</div>
</div>
</div>
</div>
</body>
</html>