-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacto.html
85 lines (73 loc) · 3.13 KB
/
contacto.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>diseñador Freelacer</title>
<link rel="stylesheet" href="css/normalize.css" >
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Krub:wght@400;700&display=swap" rel="stylesheet">
<link rel="preload" href="css/styles.css" as="styles">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<h1 class="titulo">Jorge Sánchez <span>Freelancer</span></h1>
</header>
<div class="nav-bg">
<nav class="navegacion-principal contenedor">
<a href="index.html">Inicio</a>
<a href="nosotros.html">Nosotros</a>
<a href="clientes.html">Clientes</a>
<a href="contacto.html">Contacto</a>
</nav>
</div>
<main class="hero">
<div class="contenido-hero">
<h2>Diseño y Desarrollo Web <span>Freelancer</span></h2>
<p>Guadalajara, Jalisco</p>
<p>
<svg xmlns="http://www.w3.org/2000/svg" class="icon icon-tabler icon-tabler-map-pin" width="88" height="88" viewBox="0 0 24 24" stroke-width="1.5" stroke="#ffc107" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/>
<path d="M9 11a3 3 0 1 0 6 0a3 3 0 0 0 -6 0" />
<path d="M17.657 16.657l-4.243 4.243a2 2 0 0 1 -2.827 0l-4.244 -4.243a8 8 0 1 1 11.314 0z" />
</svg>
</p>
<a class="boton" href="#">Contactar</a>
</div>
</main>
<section>
<h2>Contacto</h2>
<form class="formulario">
<fieldset>
<legend>contactános llenando los campos</legend>
<div class="contenedor-campos">
<div class="campo">
<label>Nombre</label>
<input class="input-text" type="text" placeholder="Tu Nombre">
</div>
<div class="campo">
<label>Teléfono</label>
<input class="input-text" type="tel" placeholder="Tu teléfono">
</div>
<div class="campo">
<label>Correo</label>
<input class="input-text" type="email" placeholder="Tu Email">
</div>
<div class="campo">
<label>Mensaje</label>
<textarea class="input-text"></textarea>
</div>
</div><!--.contenedor-campos-->
<div class="alinear-derecha flex">
<input class="boton w-sm-100" type="submit" value="Enviar">
</div>
</fieldset>
</form>
</section>
<footer class="footer">
<p>Todos los derechos reservados Jorge Sánchez Freelancer</p>
</footer>
</body>
</html>