-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactar.html
113 lines (102 loc) · 2.65 KB
/
contactar.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
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
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- <link rel="stylesheet" href="./estilos.css" /> -->
<title>LookGood</title>
</head>
<style>
body {
background: rgba(217, 171, 154, 0.83);
}
.uno {
position: absolute;
width: 1390px;
height: 100px;
left:0px;
right: 0px;
top:0px;
background: rgba(217, 171, 154, 0.83);
}
h1 {text-shadow: 2px 2px 4px #fff;
position: absolute;
width: 1340px;
height: 67px;
left: 39px;
top: 4px;
font-style: normal;
font-weight: normal;
font-size: 48px;
line-height: 4px;
text-align: center;
color: #40251b;
}
footer {
position: absolute;
width: 1390px;
height: 100px;
left: 0px;
top: 1521px;
background: rgba(217, 171, 154, 0.83);
}
.prin{
background-image: url("./assets/originales/fondo.jpg");
position: relative;
background-size: cover;
background-position: center;
width: 850px;
height: 300px;
top: 86px;
left: 300px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8), 0 6px 20px 0 rgba(0, 0, 0, 0.59);
}
.dudas{position: relative;
height: 50px;
width: 566px;
left: 275px;
top:350px;
}
.p3 {
position: relative;
height: 15px;
width: 382px;
left: 325px;
top: 350px;
}
.p4{
position: relative;
height: 15px;
width: 382px;
left: 325px;
top: 350px;
}
.copy {text-shadow: 2px 2px 4px #fff;
position: absolute;
left: 750px;
}
</style>
<body>
<header class="uno">
<a href="../index.html"> Inicio</a>
<a href="./productoshombre.html">Hombre</a>
<a href="../productosmujer.html">Mujer</a>
<a href="../contactar.html">Contactar</a>
<!-- banner -->
<h1>Cosméticos - GoodLook</h1>
</header>
<main class="prin">
<p class="dudas">DUDAS - CONSULTAS - PRESUPUESTOS</p>
<h3 class="p3">✆ 692 000 100</h3>
<h3 class="p4">✉ [email protected]</h3>
</main>
<footer>
<h6 class="copy">© copyright 2021 - LookGood</h6>
<a>Visitanos en las redes:</a>
<a href="http://www.Facebook.com" target="_blank">Facebook</a>
<a href="http://www.YouTube.com" target="_blank">YouTube</a>
<a href="http://www.Instagram.com" target="_blank">Instagram</a>
</footer>
</body>
</html>