-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact.html
More file actions
85 lines (75 loc) · 3.07 KB
/
Copy pathcontact.html
File metadata and controls
85 lines (75 loc) · 3.07 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>4CeeD</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="bootstrap/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="jquery-ui/css/jquery-ui.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="select2/css/select2.css">
<!--[if lt IE 9]>
<script src="bootstrap/js/html5shiv.min.js"></script>
<script src="bootstrap/js/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
</head>
<body>
<nav class="navbar navbar-inverse navbar-custom1">
<div class="container-fluid">
<div class="navbar-header">
<a href="index.html" class="" ><img src="images/atom_white.png" height="40" style="margin-top:5px;"></a>
</div>
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href="index.html">About</a></li>
<li><a href="demo.html">Demo</a></li>
<li><a href="docs.html">Docs</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="col-md-12 icons_pad">
<div class="jumbotron">
<form>
<h3>Contact Us</h3><hr />
<div class="form-group">
<label for="name"><span class="red">* </span>Name: </label>
<input type="text" class="form-control" id="name" required>
</div>
<div class="form-group">
<label for="email"><span class="red">* </span>Email address: </label>
<input type="email" class="form-control" id="email" required>
</div>
<div class="form-group">
<label for="comment">Comments:</label>
<textarea class="form-control" rows="5" id="comment"></textarea>
</div>
<button type="submit" class="btn btn-success">Submit</button>
</form>
</div>
</div>
</div>
<div class="navbar navbar-fixed-bottom" style="background-color:#f6f7f9;">
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="jquery/js/jquery.min.js"></script>
<script src="jquery-ui/js/jquery-ui.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed
<!-- Latest compiled and minified JavaScript -->
<script src="bootstrap/js/bootstrap.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-85306000-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>