-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·77 lines (46 loc) · 2.23 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
<!DOCTYPE html>
<html lang="es" style="height: 100%;">
<head>
<meta charset="utf-8">
<title>Learning HTML</title>
<meta name="description" content="">
<meta name="author" content="Sukafe">
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Estilos -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/basic.css">
<!-- Google Fonts -->
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700" rel="stylesheet" type="text/css">
<style>
body{
background-image: url('img/bg.jpg');
width: 100%;
}
</style>
</head>
<body>
<header>
<p class="text-center" style="color:white; font-size: 35px; font-weight: 300; text-shadow: 0px 0px 10px #000; margin-top: 10px;"><b>Aprendiendo HTML</b></p>
<p class="text-center" style="color:white; font-size: 30px; padding: 25px; font-weight: 300; padding-bottom: 0px; text-shadow: 0px 0px 10px #000;">Adéntrate en la programación web de la mano de Sukafe</p>
<br>
</header>
<section>
<article style="background-color: rgba(0, 0, 0, 0.5); width: 100%; height: 100%; z-index: 999; box-shadow: 0px 1px 10px #000;">
<br>
<div class="text-center">
<div class="div-center btn caja">
<a href="capitulos/2.html"><p class="text-center" style="font-size: 20px; margin-top: 3px;">Comenzar</p></a>
</div>
<div class="div-center btn caja">
<a href="creditos.html"><p class="text-center" style="font-size: 20px; margin-top: 3px;">Créditos</p></a>
</div>
<br>
</div>
<br>
</article>
</section>
<footer style="margin-bottom: 10px; margin-top: 10px;">
<p class="text-center"><small class="white text-shadow2">Sukafe 2015</small></p>
</footer>
</body>
</html>