-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
62 lines (58 loc) · 2.31 KB
/
contact.html
File metadata and controls
62 lines (58 loc) · 2.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Noto+Serif+Display:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/css/normalize.css">
<link rel="stylesheet" href="/css/styles.css">
<title>BELLE</title>
</head>
<body>
<header>
<h1 class="name-page">Belle</h1>
</header>
<div class="navegador">
<nav class="nav-principal">
<a href="index.html">Home</a>
<a href="aboutus.html">About us</a>
<a href="products.html">Products</a>
<a href="contact.html">Contact</a>
</nav>
</div>
<section>
<h2>Contact us</h2>
<form class="formulario sombra">
<fieldset>
<legend>Feel free to contact us any time.</legend>
<div class="contenedor-campos">
<div class="campo">
<label for="">Name</label>
<input type="text" class="input-text" placeholder="your name">
</div>
<div class="campo">
<label for="">Telephone</label>
<input type="tel" class="input-text" placeholder="your phone number" >
</div>
<div class="campo">
<label for="">Email</label>
<input type="email" class="input-text" id="" placeholder="write your email">
</div>
<div class="campo">
<label for="">Mensaje</label>
<textarea class="input-text" id="" cols="30" rows="10"></textarea>
</div>
</div>
<div class="alinear-derecha flex">
<input type="submit" class="bottom w-sm-100" value="Submit">
</div>
</fieldset>
</form>
</section>
<footer>
<p>All rights reserved. Moises Alarcon </p>
</footer>
</body>
</html>