-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
80 lines (72 loc) · 3.04 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=Roboto+Slab&display=swap" rel="stylesheet">
<link rel="stylesheet" href="contact.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous"><link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
</head>
<body style="background: linear-gradient(57deg, #000000 , #01c3f9 ); ">
<div class="container">
<header>
<h1>Contact Us</h1>
</header>
<div class="content">
<div class="content-form">
<section>
<i class="fa fa-map-marker fa-2x" aria-hidden="true"></i>
<h2>Address</h2>
<p>
Lorem ipsum dolor sit. <br>
Lorem, ipsum dolor. <br>
lorem
</p>
</section>
<section>
<i class="fa fa-phone fa-2x" aria-hidden="true"></i>
<h2>Phone</h2>
<p>123-456-78910</p>
</section>
<section>
<i class="fa fa-envelope fa-2x" aria-hidden="true"></i>
<h2>E-mail</h2>
<p>[email protected]</p>
</section>
</div>
</div>
<form>
<div class="form">
<div class="right">
<div class="contact-form">
<input type="text" required>
<span>Full Name</span>
</div>
<div class="contact-form">
<input type="E-mail" required>
<span>E-mail Id</span>
</div>
<div class="contact-form">
<textarea name="text">
</textarea>
<span> Type your Message....</span>
</div>
<div class="contact-form">
<input type="submit" name="submit">
</div>
</div>
</div>
</div>
</form>
<div class="media">
<li><i class="fa fa-facebook-square fa-2x" aria-hidden="true"></i></li>
<li><i class="fa fa-instagram fa-2x" aria-hidden="true"></i></li>
<li><i class="fa fa-whatsapp fa-2x" aria-hidden="true"></i></li>
<li><i class="fa fa-twitter-square fa-2x" aria-hidden="true"></i></li>
</div>
<div class="empty">
</div>
</div>
</body>
</html>