-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
68 lines (63 loc) · 2.57 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
<!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">
<title>Website with a contact Form 01</title>
<link rel="stylesheet" href="main.css">
<!-- GOOGLE FONTs -->
<link href="https://fonts.googleapis.com/css?family=Quicksand" rel="stylesheet">
<!-- FONT AWESOME -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<!-- ANIMATE CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css">
</head>
<body>
<div class="content">
<h1 class="logo">Contact <span>Us</span></h1>
<div class="contact-wrapper animated bounceInUp">
<div class="contact-form">
<h3>Contact us</h3>
<form action="">
<p>
<label>FullName</label>
<input type="text" name="fullname">
</p>
<p>
<label>Email Adress</label>
<input type="email" name="email">
</p>
<p>
<label>Phone Number</label>
<input type="tel" name="phone">
</p>
<p>
<label>Affair</label>
<input type="text" name="affair">
</p>
<p class="block">
<label>Message</label>
<textarea name="message" rows="3"></textarea>
</p>
<p class="block">
<button>
Send
</button>
</p>
</form>
</div>
<div class="contact-info">
<h4>More Info</h4>
<ul>
<li><i class="fas fa-map-marker-alt"></i> Baker Street</li>
<li><i class="fas fa-phone"></i> (111) 111 111 111</li>
<li><i class="fas fa-envelope-open-text"></i> [email protected]</li>
</ul>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Libero provident ipsam necessitatibus repellendus?</p>
<p>Company.com</p>
</div>
</div>
</div>
</body>
</html>