-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (77 loc) · 3.48 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Nu Projects</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="main.css">
<script src="main.js"></script>
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Sem6-NU</a>
</div>
<ul class="nav navbar-nav">
<li class="active" ><a class="nav-link smooth-scroll" href="#Capstone-I">Capstone-I</a></li>
<li class="active"><a href="#Developers">Developers</a></li>
<li class="active"><a href="#Contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="container" id="Capstone-I" >
<div class="jumbotron">
<h2>Object Detection</h2>
<br>
<div>Problem Statement: If an image is given our model should be able to tell the name of all the types object present in that image. </div>
<br>
<div><iframe width="560" height="315" src="https://www.youtube.com/embed/l50b1B2vgYI" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
<br>
<div><a href="https://github.com/sem6-nu/CAPSTONE-I" class="btn btn-xs btn-primary">View it on GitHub</a></div>
<div><a href="https://hub.docker.com/r/soumyadipghosh30121997/object_detection" class="btn btn-xs btn-primary">View Docker Image</a></div>
</div>
</div>
<div class="container" id="Developers" >
<div class="jumbotron">
<h2>Developers</h2>
<br>
<div class="row">
<div class="column">
<img src="images/rahul.jpg" class="img-circle" alt="Snow" title="Rahul Ghosh" height="250" width="236">
</div>
<div class="column">
<img src="images/samir.jpg" class="img-circle" alt="Snow" title="Samir Ahmed Ghouri" height="250" width="236">
</div>
<div class="column">
<img src="images/raj.jpg" class="img-circle" alt="Snow" title="Soumyadip Ghosh" height="250" width="236">
</div>
<div class="column">
<img src="images/atreja.jpg" class="img-circle" alt="Snow" title="Deepak Atreja" height="250" width="236">
</div>
</div>
</div>
<div class="container" id="Contact" >
<div class="jumbotron">
<h2>Contact</h2>
<div>
</div>
</div>
</div>
</div>
<footer class="footer">
<div class="text-center text-muted">
<p>© 2019 sem6-NU</p>
</div>
</footer>
</body>
</html>