forked from danielromeroauk/git-desde-cero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (31 loc) · 815 Bytes
/
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<title>Git desde cero</title>
</head>
<style type="text/css">
* {
margin: 0px;
padding: 0px;
}
#app {
background-color: floralwhite;
box-sizing: border-box;
box-shadow: 3px 2px crimson;
margin: 10px auto;
padding: 1em;
width: 1024px;
}
</style>
<body>
<div id="app">
<h1>Git desde cero en EDteam</h1>
<p>
Git es un sistema de control de versiones que nos ayuda a llevar el historial completo de modificaciones de un
proyecto, conociendo en detalle los cambios y quién los hizo.
</p>
<p><a href="https://github.com/danielromeroauk/git-desde-cero">Detalles de cursos Git en el README</a></p>
</div>
</body>
</html>