forked from yashagarwal17/ComputerVision
-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
124 lines (100 loc) · 4.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ComputerVision - Contact</title>
<meta name="description" content="Free Bootstrap Theme by uicookies.com">
<meta name="keywords" content="free website templates, free bootstrap themes, free template, free bootstrap, free website template">
<!-- <link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400" rel="stylesheet"> -->
<link rel="stylesheet" href="css/styles-merged.css">
<link rel="stylesheet" href="css/style.min.css">
<link rel="stylesheet" href="css/custom.css">
<!--[if lt IE 9]>
<script src="js/vendor/html5shiv.min.js"></script>
<script src="js/vendor/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- START: header -->
<div class="probootstrap-loader"></div>
<header role="banner" class="probootstrap-header">
<div class="container">
<a href="index.html" class="probootstrap-logo" style='style:30px;'>ComputerVision</a>
<a href="#" class="probootstrap-burger-menu visible-xs" ><i>Menu</i></a>
<div class="mobile-menu-overlay"></div>
<nav role="navigation" class="probootstrap-nav hidden-xs">
<ul class="probootstrap-main-nav">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<!-- END: header -->
<div class="probootstrap-main">
<section class="probootstrap-section-half probootstrap-no-hover">
<div class="probootstrap-image" style="background-image: url(img/image_1.jpg)"></div>
<div class="probootstrap-text">
<div class="probootstrap-inner probootstrap-animate">
<h1 class="heading">ComputerVision</h1>
<p>With the help of AI, machines now also have senses and they can work with the help of taking signals via these senses. Image recognition is one of its senses. Here is a collection of some cool projects which incorporates the image recognising power of computer and help you do creative things.</p>
</div>
</div>
</section>
<!-- END section -->
<section class="probootstrap-section probootstrap-animate">
<div class="container">
<div class="row">
<div class="col-md-6 col-md-offset-3">
<form action="#" method="post" class="probootstrap-form probootstrap-form-box mb60">
<div class="row">
<div class="col-md-6">
<div class="form-group">
<label for="fname">First Name</label>
<input type="text" class="form-control" id="fname" name="fname">
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<label for="lname">Last Name</label>
<input type="text" class="form-control" id="lname" name="lname">
</div>
</div>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" id="email" name="email">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea cols="30" rows="10" class="form-control" id="message" name="message"></textarea>
</div>
<div class="form-group">
<input type="submit" class="btn btn-primary" id="submit" name="submit" value="Send Message">
</div>
</form>
</div>
</div>
</div>
</section>
<!-- END section -->
</div>
<footer class="probootstrap-footer">
<div class="container">
<div class="row">
<div class="col-md-12">
<p>© 2017 <a href="https://probootstrap.com/">uiCookies:Connect</a>. All Rights Reserved. <br> Designed & Developed by <a href="https://probootstrap.com">uiCookies</a>
</div>
</div>
</div>
</footer>
<div class="gototop js-top">
<a href="#" class="js-gotop"><i class="icon-chevron-thin-up"></i></a>
</div>
<script src="js/scripts.min.js"></script>
<script src="js/main.min.js"></script>
<script src="js/custom.js"></script>
</body>
</html>