-
Notifications
You must be signed in to change notification settings - Fork 109
/
contact.html
46 lines (41 loc) · 1.44 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
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="./style.css">
<link rel="stylesheet" href="contact.css">
</head>
<body>
<nav class="nav">
<h1><a class="logo">VOICE.py</a></h1>
<div class="nav-right">
<h1><a href="">Home</a></h1>
<h1><a href="">Features</a></h1>
<h1><a href="contact.html">Contact</a></h1>
<h1><a href="">About</a></h1>
<h1><a href="faq.html">FAQ</a></h1>
</div>
</nav>
<section class="contact" id="contact">
<h2 class="heading">Contact Us </h2>
<form action="">
<div class="input-group-1">
<div class="input-box">
<input type="text" placeholder="Full Name">
<input type="email" placeholder="Email">
</div>
<div class="input-box">
<input type="number" placeholder="Phone Number">
<input type="text" placeholder="Subject">
</div>
</div>
<div class="input-group-2">
<textarea name="" id="" cols="30" rows="10" placeholder="Your Message"></textarea>
<input type="submit" value="Send message" class="btn">
</div>
</form>
</section>
</body>
</html>