-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
184 lines (108 loc) · 6.27 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="/your-path-to-fontawesome/css/all.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link href="/your-path-to-fontawesome/css/fontawesome.css" rel="stylesheet">
<link href="/your-path-to-fontawesome/css/brands.css" rel="stylesheet">
<link href="/your-path-to-fontawesome/css/solid.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body></body>
<nav class="navbar fixed-top navbar-expand-lg navbar-dark sticky-top shadow-lg p-4 rounded sticky-top;">
<ul class="navbar-nav">
<li class=" nav-item active">
<a class="nav-link" href="index.html" target="_blank" style="font-size: 30px;">Clin-IT Solutions</a>
</a>
</li>
</ul>
<div class="container mr-4">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav >
<li class=" nav-item active">
<a class="nav-link" href="about.html" target="_blank">About</a>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="services.html" target="_blank">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html" target="_blank">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="content">
<div class = "contact-form mb-5 pb-5">
<form action="http://web.engr.oregonstate.edu/~zhangluy/tools/class-content/form_tests/check_request.php" method="POST" target="_blank">
<h3 style="text-align: center;">Contact Us</h3>
<div class="form-group">
<div class=" mt-5 pt-5 ">
<!-- Could not get this to work in the script.js file -->
<h2 class="fadeOnLoad"> Tell Us About Your Lab. <span class="fadeOnLoad2">Free Consultation</span></h2>
<script>
$(".fadeOnLoad").hide(0).delay(500).fadeIn(3000)
$(".fadeOnLoad2").hide(0).delay(2000).fadeIn(3000)
</script>
</div>
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text bg-white">
<i class="fa fa-user"></i> 
</span>
</div>
<input name="name" type="name" placeholder="Name" class="form-control border-left-0" required>
</div>
</div>
<div class="form-group">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text bg-white">
<i class="fa fa-envelope"></i>
</span>
</div>
<input name="email" type="email" placeholder="Email" class="form-control border-left-0" required>
</div>
</div>
<div class="form-group">
<textarea class="form-control" id="message" rows="5" placeholder="Enter message" required></textarea>
</div>
<button type="submit" class="btn btn-primary float-right">
<i class="fa fa-paper-plane"></i>
Send
</button>
</form>
</div>
<div class = "ourPartners">
<h2>Our Partners</h2>
</div>
<div class="scrollmenu mt-4 border" >
<a href="https://www.beckmancoulter.com/">Beckman Coulter</a>
<a href="https://oregonstate.edu/">Oregon State Unversity</a>
<a href="https://www.rutgers.edu/">Rutgers University</a>
<a href="http://www.brightsidesci.com/">BrightSide Scientific</a>
<a href="https://millenniumphysicians.com/medical-oncology-hematology/">Millennium Physicians</a>
</div>
</div>
<script src="script.js" async defer></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>