-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
39 lines (39 loc) · 1.13 KB
/
Copy pathcontact.html
File metadata and controls
39 lines (39 loc) · 1.13 KB
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
<!DOCTYPE html>
<!-- Created By CodingNepal - www.codingnepalweb.com -->
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title> Contact Us </title>
<link rel="stylesheet" href="contact.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container">
<div class="content">
<div class="image-box">
<!-- <img src="assets/arrow_icon.png" alt=""> -->
<img src="assets/right_img.png" alt="">
</div>
<form action="#">
<div class="topic">Send us a message</div>
<div class="input-box">
<input type="text" required>
<label>Enter your name</label>
</div>
<div class="input-box">
<input type="email" required>
<label>Enter your email</label>
</div>
<!-- <div class="message-box"> -->
<div class="input-box">
<input type="text" required>
<label>Enter your message</label>
</div>
<div class="input-box">
<input type="submit" value="Send Message">
</div>
</form>
</div>
</div>
</body>
</html>