-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (35 loc) · 1.45 KB
/
index.html
File metadata and controls
38 lines (35 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
<title>Contact form</title>
</head>
<body>
<div class="main-block">
<div class="left-part">
<i class="fas fa-envelope"></i>
<i class="fas fa-at"></i>
<i class="fas fa-mail-bulk"></i>
</div>
<form method="post" name="form" action="" onsubmit="return formValidation()">
<h1>Contact Us</h1>
<div class="info">
<input id="fname" type="text" name="name" placeholder="Full name">
<input id="email" type="text" name="email" placeholder="Email">
<input id="phone" type="text" name="phone" placeholder="Phone number">
</div>
<p>Message</p>
<div>
<textarea id="message" name="message" rows="4"></textarea>
</div>
<button id="submit" type="submit">Submit</button>
</form>
</div>
</body>
</html>