-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForma.html
69 lines (64 loc) · 3.23 KB
/
Forma.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
<!DOCTYPE html>
<html>
<head>
<title>Torres Chile</title>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="Forma.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="HTML.html">Torres Lanchas</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ">
<li class="nav-item active">
<a class="nav-link" href="#">Contacto</a>
</li>
</ul>
</div>
</nav>
<div class="formas" id="forms12">
<form>
<h1>Interesado en nuestras ofertas?</h1>
<h3>Envianos tus datos y nos pondremos en contacto contigo</h3>
<div class="form-group">
<label for="exampleInputEmail1">E-mail</label>
<input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Ingresa tu Email">
<small id="emailHelp" class="form-text text-muted">Nunca compartiremos tu e-mail</small>
</div>
<div class="form-group">
<label for="nameform">Nombre completo</label>
<input class="form-control" type="text" id=nameform placeholder="Nombres y Apellidos">
</div>
<div class="form-group">
<label for="rut">RUT</label>
<input class="form-control" type="text" id=rutform placeholder="Sin puntos ni comas">
</div>
<div class="form-group">
<label for="ciudad">Ciudad</label>
<input class="form-control" type="text" id=ciudform placeholder="Ciudad">
</div>
<div class="form-group">
<label for="region">Region</label>
<input class="form-control" type="text" id=regform placeholder="Maule, Metropolitana, Los Lagos...">
</div>
<div class="form-group">
<label for="Comentarios">Comentarios</label>
<textarea class="form-control" id="comentariosform" rows="5" placeholder="¿Desea averiguar sobre algun producto en particular?"></textarea>
</div>
<div class="form-group form-check">
<input type="checkbox" class="form-check-input" id="exampleCheck1">
<label class="form-check-label" for="exampleCheck1">Acepto los terminos y condiciones (?)</label>
</div>
<button type="submit" class="btn btn-primary">Enviar</button>
</form>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script>
</body>
</html>