-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
41 lines (41 loc) · 1.78 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<link rel="icon" type="im" sizes="32x32" href="./assets/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./asset/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<title>Sein</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="./css/estilos.css">
</head>
<body class="form">
<div class="container">
<p class="contact_title">Contact </p>
<p class="contact_paragraph">Contact us to build a tech product together, to work with us or just to have a chat.
</p>
</div>
<div class="contact_form">
<p class="invisible" id="form_error"> todos los campos son requeridos </p>
</div>
<div id="form" class="container">
<label for="name"> My Name is</label>
<input type="text" id="name" name="name">
<label for="email"> My Email is</label>
<input type="text" id="email" name="email">
<label for="message">Message</label><br>
<textarea id="message" name="message"></textarea>
</div>
<div class="button_div container">
<button class="button_submit" id="sendBtn" onclick="send()">send</button>
</div>
<script src="./js/sein.js"></script>
</body>
</html>