-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathllamada.html
45 lines (30 loc) · 1.2 KB
/
llamada.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
<!DOCTYPE html>
<html lang="es">
<head>
<title>Twocrows</title>
<link rel="stylesheet" href="./CSS/style.css">
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&family=Source+Code+Pro:ital,wght@0,400;1,700&display=swap" rel="stylesheet">
</head>
<body class="cuerpo">
<form class="formulario">
<fieldset>
<legend>Contáctame llenando todos los campos</legend>
<div class="campo">
<label>Nombre</label>
<input class="input-text" type="text" id="nombre" placeholder="Tu nombre">
<div class="campo">
<label>telefono</label>
<input class="input-text" type="text" id="telefono" placeholder="Tu telefono">
</div>
</div>
<div class="campo">
<label >Mensaje</label>
<textarea class="input-text" name="mensaje" id="mensaje" cols="30" rows="10" placeholder="Tu Mensaje"></textarea> <!---Aqui mensajes largos--->
</div>
<input class="boton w90" type="submit" value="Enviar">
</fieldset>
</form>
<script src="./js/js2.js"></script>
<a class="volver" href="./index.html">Principal</a>
</body>
</html>