-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
37 lines (37 loc) · 1.11 KB
/
contact.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title> Contact | Enfrade</title>
<link rel="stylesheet" href="./assets/css/contact.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="https://i.ibb.co/0hhT0GR/Logo-Transparent.png">
</head>
<body>
<div class="container">
<div class="content">
<div class="image-box">
<img style="height: 400px;" src="https://i.ibb.co/0F5dZnt/Illustration.png" alt="illustration">
</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="text" required>
<label>Enter your email</label>
</div>
<div class="input-box" required>
<input placeholder="Enter your message" class="message-box">
</div>
<br>
<div class="input-box">
<input type="submit" value="Send Message">
</div>
</form>
</div>
</div>
</body>
</html>