-
Notifications
You must be signed in to change notification settings - Fork 0
/
connect.htm
122 lines (102 loc) · 6.03 KB
/
connect.htm
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!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="css/style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="script/script.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<title>Connect</title>
</head>
<body>
<div class="image">
<img src="images/logo.png" alt="" srcset="">
</div>
<div id="container">
<div id="toppage2">
<nav class="fixed-nav-bar navigation" >
<ul>
<li id="connect">
<a href="connect.htm"><h1 style="opacity: 1;">Connect</h1></a>
</li>
<li id="categories">
<a href="categories.htm"><h1>Categories</h1></a>
</li>
<li id="home" >
<a href="home.htm"><h1>About Us</h1></a>
</li>
</ul>
</nav>
</div>
<section id="contactback">
<div class="container pageSection" id="contact">
<h1 id="contactTitle" class="sectionTitle">Contact</h1>
<h4 id="contactSubtitle" class="sectionSubtitle">Send us a message using the form below.</h4>
<hr>
<div class="row">
<div class="col-md-12"><div class="row">
<div class="col-md-6">
<div class="contactDetails">
<div>
<h4>Get In Touch</h4>
<div>
<i class="fa fa-phone"></i>
<span>Telephone:</span>
<span>+1 123 456 7890</span>
</div>
<div>
<i class="fa fa-envelope"></i>
<span>Mail:</span>
<span>your@email.com</span>
</div>
<div>
<i class="fa fa-map-marker"></i>
<span>Location:</span>
<span>1 Website Lane, Suite 1000<br>Boston, MA 11111</span>
</div>
</div>
</div>
</div>
<div class="col-md-6">
<style id="contactStyle1">
</style>
<form class="contactForm col-md-12" onsubmit="event.preventDefault(); return false;">
<div class="form-group">
<label id="contactFormNameLabel" for="name">Name</label>
<div class="input-group">
<span class="input-group-addon"><i id="nameAddOn" ></i></span>
<input name="name" type="text" class="form-control" id="name" placeholder="Your Name" required="required">
</div>
</div>
<div class="form-group">
<label id="contactFormEmailLabel" for="email">Email Address</label>
<div class="input-group">
<span class="input-group-addon"><i id="emailAddOn" ></i></span>
<input name="email" type="email" class="form-control" id="email" placeholder="Your Email" required="required">
</div>
</div>
<div class="form-group">
<label id="contactFormSubjectLabel" for="subject">Subject</label>
<div class="input-group">
<span class="input-group-addon"><i id="subjectAddOn"></i></span>
<input name="subject" type="text" class="form-control" id="subject" placeholder="Subject" required="required">
</div>
</div>
<div class="form-group">
<label id="contactFormMessageLabel" for="subject">Message</label>
<div class="input-group textarea-group">
<textarea name="message" id="message" class="form-control" required="required" placeholder="Message"></textarea>
</div>
</div>
<button type="submit" class="btn btn-primary" id="contactButton">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>