-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (67 loc) · 3.13 KB
/
index.html
File metadata and controls
75 lines (67 loc) · 3.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- <meta name="viewport" content="width=device-width, initial-scale=1" /> -->
<meta name="viewport" content="width=device-width, user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Kanvart</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous" />
<link href="https://fonts.googleapis.com/css?family=Oswald&display=swap" rel="stylesheet" />
<link href="/css/main.css" rel="stylesheet">
<style>
body {
overflow: hidden;
background-image: url("/img/home/background.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
overflow-x: hidden;
}
.right-side {
background: rgba(0, 0, 0, 0.6);
}
</style>
</head>
<body class="min-vh-100">
<div class="row min-vh-100">
<div class="col-md-6 d-none d-md-block d-lg-block">
</div>
<div class="col-md-6 col-xs-12 right-side">
<div class="h-50 text-center d-none d-sm-block position-relative">
<div class="h-75">
</div>
<div>
<img src="/img/home/logo.png" class="mb-3">
</div>
</div>
<div class="text-center">
<div class="row">
<div class="col">
<img src="/img/home/logo.png" class="rounded mx-auto d-block d-sm-none mt-5 mb-5">
<h1 class="custom-font display-4 text-white m-0">
<span class="font-weight-bolder">LIENZO</span> +
<span class="font-weight-bolder">ARTE</span><br class="d-block d-sm-none"/> +
<span class="font-weight-bolder">CREATIVIDAD</span>
</h1>
</div>
</div>
<div class="row mx-auto mt-5" style="width:315px">
<div class="col">
<h3 class="text-primary text-left">Ilustrador</h3>
<h5 class="text-color text-left text-white">
Ilustra las veces que quieras y crea tus propias oportunidades
</h5>
<div class="mx-auto mt-3">
<small class="text-center text-white mb-3 d-block"><a href="aboutus.html">Más información</a></small>
<a class="btn btn-kanvart text-white font-weight-bold" href="contactform.html">
Aceptar
</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>