-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (107 loc) · 5.35 KB
/
Copy pathindex.html
File metadata and controls
111 lines (107 loc) · 5.35 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
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Página inicial</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="css/estilos_personalizados.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Personal</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Open source</a></li>
<li><a href="#">Business</a></li>
<li><a href="#">Explore</a></li>
</ul>
<form class="navbar-form navbar-left" role="search">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
<ul class="nav navbar-nav navbar-right">
<li><a href="#">Princing</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Support</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div>
</nav>
<div class="jumbotron">
<h2 class="text-center">Welcome home, developers</h2>
<p class="text-center">GitHub fosters a fast, flexible, and collaborative development process that lets you work on your own or with others.</p>
</div>
<div class="row">
<div class="row">
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-3">
<img src="images/home-ill-build.png" alt="" class="img-responsive center-block">
<h3 class="text-center">For everything you build</h3>
<p class="text-justify">Host and manage your code on GitHub. You can keep your work private or share it with the world.</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-3">
<img src="images/home-ill-work.png" alt="" class="img-responsive center-block">
<h3 class="text-center">A better way to work</h3>
<p class="text-justify">From hobbyists to professionals, GitHub helps developers simplify the way they build software.</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-3">
<img src="images/home-ill-projects.png" alt="" class="img-responsive center-block">
<h3 class="text-center">Millions of projects</h3>
<p class="text-justify">GitHub is home to millions of open source projects. Try one out or get inspired to create your own.</p>
</div>
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-3">
<img src="images/home-ill-platform.png" alt="" class="img-responsive center-block">
<h3 class="text-center">One platform, from start to finish</h3>
<p class="text-justify">With hundreds of integrations, GitHub is flexible enough to be at the center of your development process.</p>
</div>
</div>
</div><!-- row -->
<hr>
<h1 class="text-left">Who uses GitHub?</h1>
<div class="row">
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4 thumbnail">
<img src="images/individuals.png" alt="" class="img-responsive center-block">
<h3 class="text-center">Individuals</h3>
<p class="text-justify descripcion">Use GitHub to create a personal project, whether you want to experiment with a new programming language or host your life’s work.</p>
</div>
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4 thumbnail">
<img src="images/Communities.jpg" alt="" class="img-responsive center-block">
<h3 class="text-center">Communities</h3>
<p class="text-justify descripcion">GitHub hosts one of the largest collections of open source software. Create, manage, and work on some of today’s most influential technologies.</p>
</div>
<div class="col-xs-12 col-sm-4 col-md-4 col-lg-4 thumbnail">
<img src="images/business.png" alt="" class="img-responsive center-block">
<h3 class="text-center">Businesses</h3>
<p class="text-justify descripcion">Businesses of all sizes use GitHub to support their development process and securely build software.</p>
</div>
</div>
<hr>
</div><!-- container -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>