-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
98 lines (96 loc) · 4.18 KB
/
contact.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
<!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">
<title>Melifluo / Contacto</title>
<link rel="icon" type="image/svg" href="assets/icon/ICONO MELIFLUO CLASES.svg">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/425px.css" media="screen and (min-width: 425px)">
<link rel="stylesheet" href="css/600px.css" media="screen and (min-width: 600px)">
<link rel="stylesheet" href="css/767px.css" media="screen and (min-width: 767px)">
<link rel="stylesheet" href="css/900px.css" media="screen and (min-width: 900px)">
<link rel="stylesheet" href="css/1024px.css" media="screen and (min-width: 1024px)">
<link rel="stylesheet" href="css/1120px.css" media="screen and (min-width: 1120px)">
<link rel="stylesheet" href="css/1280px.css" media="screen and (min-width: 1280px)">
<link rel="stylesheet" href="css/1440px.css" media="screen and (min-width: 1440px)">
</head>
<body class="body__contact">
<header class="header__contact">
<section class="header__head">
<div class="head__logo">
<a href="index.html">
<img src="assets/icon/melifluo-amarillo.png" alt="Logo Melifluo">
</a>
</div>
</section>
<section class="header__presentation">
<div class="presentation__titles">
<h2>Eres un verdadero Music Lover. Gracias por creer en nosotros y hacer parte del prelanzamiento Early rockers de Melifluo.</h2>
<h2>Estamos creando la mejor experiencia de aprendizaje musical para ti. Muy pronto estará listo el curso.</h2>
</div>
</section>
</header>
<main class="contact__main">
<section class="main__contact-section">
<div class="contact__title">
<h2>Déjanos tus datos y nos comunicaremos contigo para que hagas de la Música tú hobby.</h2>
</div>
<div class="contact__form-container">
<form action="">
<div class="form__label">
<label for="name">
<span>* Nombre:</span>
<input type="text" name="name" id="name" autocomplete="name" placeholder="Nombre" required>
</label>
</div>
<div class="form__label">
<label for="lastname">
<span>* Apellido:</span>
<input type="text" name="lastname" id="lastname" placeholder="Apellido" required>
</label>
</div>
<div class="form__label">
<label for="email">
<span>* Email:</span>
<input type="email" name="email" id="email" autocomplete="email" placeholder="Email" required>
</label>
</div>
<div class="form__label">
<label for="phone">
<span>* Teléfono:</span>
<input type="number" name="phone" id="phone" autocomplete="phone" placeholder="Teléfono" required>
</label>
</div>
<div class="form__label dates">
<label for="dates">
<span>Cuéntanos algo sobre ti:</span>
<textarea name="dates" id="dates" cols="30" rows="10" placeholder="Cuéntanos algo sobre ti"></textarea>
</label>
</div>
<div class="form__label course__field">
<label for="course">
<span>Curso:</span>
<input type="text" name="course" id="course" placeholder="Curso" readonly="readonly">
</label>
</div>
<div class="form__send">
<input class="button" type="submit" value="Enviar">
<div class="form__img">
<img src="assets/icon/melifluo-ico.png" alt="Logo de Melifluo">
</div>
</div>
</form>
</div>
</section>
</main>
<script src="js/index.js"></script>
<script src="js/form.js"></script>
</body>