-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
83 lines (74 loc) · 3.29 KB
/
portfolio.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
<html>
<head>
<meta charset="UTF-8">
<!-- Latest compiled and minified CSS -->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" integrity="sha256-7s5uDGW3AHqw6xtJmNNtr+OBRJUlgkNJEo78P4b0yRw= sha512-nNo+yCHEyn0smMxSswnf/OnX6/KwJuZTlNZBjauKhTK0c+zT+q5JOCx0UFhXQ6rJR9jg6Es8gPuD2uZcYDLqSw==" crossorigin="anonymous">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- css -->
<link rel="stylesheet" type="text/css" href="stylesheets/style.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Important Owl stylesheet -->
<link rel="stylesheet" href="assets/owl-carousel/owl.carousel.css">
<!-- Default Theme -->
<link rel="stylesheet" href="assets/owl-carousel/owl.theme.css">
<!-- Include js plugin -->
<script src="assets/owl-carousel/owl.carousel.js"></script>
<title>STARTAD</title>
</head>
<body>
<div class="container">
<div class="row">
<div id="custom-bootstrap-menu" class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<div class="navbar-header">
<a href="index.html"><img id='main-logo' class="navbar-brand img-responsive" src='img/main.jpeg'/></a>
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-menubuilder"><span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span>
</button>
</div>
<div class="collapse navbar-collapse navbar-menubuilder">
<ul class="nav navbar-nav navbar-right">
<li><a class="menu-link" href="about_us.html">NOSOTROS</a></li>
<li><a class="menu-link" href="portfolio.html">PORTFOLIO</a></li>
<li><a class="menu-link" href="busines_angels.html">BUSINESS ANGELS</a></li>
<li><a class="menu-link" href="contact.html">CONTACTO</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="row hidden-md hidden-lg hidden-sm" style="height: 140px;">
</div>
<div class="row" style="margin-top: 110px;">
<div class="col-sm-12">
<div id="owl-example" class="owl-carousel">
<div class="item-portfolio grow">
<img class="img-responsive img-portfolio" src="img/portfolio_1.jpg" />
</div>
<div class="item-portfolio grow">
<a href="https://www.youtube.com/watch?v=-Z2sH52FI7I&feature=youtu.be"><img class="img-responsive img-portfolio" src="img/portfolio_2.jpg" /> </a>
</div>
<div class="item-portfolio grow">
<img class="img-responsive img-portfolio" src="img/portfolio_3.jpg" />
</div>
</div>
</div>
</div>
</div>
<script>
$(document).ready(function() {
$("#owl-example").owlCarousel({
items : 3,
pagination: false,
navigation:true,
navigationText: [
"<i class='fa fa-chevron-left fa-2x hidden-xs'></i>",
"<i class='fa fa-chevron-right fa-2x hidden-xs'></i>"
],
});
});
</script>
</body>
</html>