-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
98 lines (96 loc) · 4.93 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 name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> Mango | Contact me </title>
<!-- googlefonts -->
<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=Libre+Baskerville:wght@400;700&family=Open+Sans:ital,wght@0,300;0,400;1,700&display=swap" rel="stylesheet">
<!-- bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!-- inner CSS style sheet -->
<link rel="stylesheet" href="css/style.css">
<!-- Fontawsome CDN -->
<script defer src="https://use.fontawesome.com/releases/v5.0.7/js/all.js"></script>
<!-- Favicon -->
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</head>
<body>
<!--navigation ------------------>
<nav class="navbar navbar-expand-lg navbar-light ">
<!--logo -------------------->
<img class="logo" src="images/mango.png" alt="logo-mango">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02" aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<!-- menu -------------------->
<ul class="menu navbar-nav ml-auto">
<li class="nav-item"><a href="index.html#main" class="active">Home</a></li>
<li class="nav-item"><a href="index.html#about">About</a></li>
<li class="nav-item"><a href="index.html#news">News</a></li>
<li class="nav-item"><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
<!--contact section-------------------->
<section id="contact">
<!-- contac form --------------------->
<form name="formulario" action="mailto:[email protected]" method="post" enctype="text/plain">
<!-- left ------------------------------>
<div class="contact-lef">
<h1> <span>Writ</span>e us</h1>
<!-- form-name -------->
<div class="f-name">
<label> Nombre
<input type="text" placeholder="Nombre"></label>
<label> Apellidos
<input type="text" placeholder="Apellido">
</label>
</div>
<!-- form-other -------->
<div class="f-other">
<label> F.Nacimiento
<input class="f-date" type="date"></label>
<label> Telefono
<input type="tel" placeholder="123-45-67-89">
</label>
</div>
<!-- form-mail -------->
<div class="f-mail">
<label> Mail
<input type="email" placeholder="[email protected]"></label>
</div>
</div>
<!-- right ------------------------------>
<div class="contact-right">
<!-- form-message -->
<div class="f-msg">
<label> Mensaje</label>
<textarea name="mensaje" rows="5" cols="20" placeholder="Escribe un mensaje..."></textarea>
</div>
<!-- submit-btn ------------->
<button type="submit" class="btn">Enviar</button>
</div>
</form>
</section>
<!-- footer -------------------------->
<footer id="footer">
<div class="container-fluid">
<a href="https://www.linkedin.com/in/titomunozabreu/" target="_blank"><i class="social-icon fab fa-linkedin"></i></a>
<a href="https://github.com/TitoMunozAbreu/" target="_blank"><i class="social-icon fab fa-github"></i></a>
<a href="https://www.instagram.com/munoztitojose/" target="_blank"><i class="social-icon fab fa-instagram"></i></a>
<a href="mailto:[email protected]" target="_blank"><i class="social-icon fas fa-envelope"></i></a>
<p>© Copyright Papaya</p>
</div>
</footer>
</body>
</html>