-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
71 lines (53 loc) · 2.57 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
<!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>Textogram</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<!--
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">-->
</head>
<body>
<div class="header">
<div class="container">
<nav id="main-nav" class="flex items-cen justify">
<div class="left flex items-cen">
<a href="index.html" style="font-size:22px; font-weight: bold;" >Textogram</a>
<a href="index.html">Home</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact Us</a>
</div>
</div>
</div>
</nav>
</div>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>Drop me a line!!</strong> </div>
<section id="contact" class="contact">
<form action="https://formspree.io/f/xeqpvbey" method="POST">
<div class="input-wrap">
<input type="text" placeholder="Your Name *" name="name" required>
<input type="email" placeholder="Your Email *" name="email" required>
</div>
<div class="input-wrap-2">
<input type="text" placeholder="Your Subject..." name="subject" required>
<textarea name="" id="" cols="30" rows="10" placeholder="Your Message.." name="message"></textarea>
</div>
<div class="btn-wrapper">
<button class="btn btn-primary">Send Message</button>
</div>
</form>
</div>
</section>
</body>
</html>